--
-- PostgreSQL database dump
--

-- Dumped from database version 12.22 (Ubuntu 12.22-2.pgdg20.04+1)
-- Dumped by pg_dump version 15.13 (Ubuntu 15.13-1.pgdg20.04+1)

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: public; Type: SCHEMA; Schema: -; Owner: postgres
--

-- *not* creating schema, since initdb creates it


ALTER SCHEMA public OWNER TO postgres;

SET default_tablespace = '';

SET default_table_access_method = heap;

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

CREATE TABLE public.activities (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    image character varying(255)
);


ALTER TABLE public.activities OWNER TO postgres;

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

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


ALTER TABLE public.activities_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.activities_id_seq OWNED BY public.activities.id;


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

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


ALTER TABLE public.ad_fields_id_seq OWNER TO postgres;

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

CREATE TABLE public.ad_fields (
    id bigint DEFAULT nextval('public.ad_fields_id_seq'::regclass) NOT NULL,
    ad_id bigint NOT NULL,
    field_id bigint NOT NULL,
    field_label character varying(255),
    value text NOT NULL,
    field_label_ar character varying(255),
    value_ar text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    field_type character varying(255),
    section character varying(255) DEFAULT 'basic'::character varying
);


ALTER TABLE public.ad_fields OWNER TO postgres;

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

CREATE TABLE public.ad_images (
    id bigint NOT NULL,
    ad_id integer NOT NULL,
    image character varying(255) NOT NULL,
    field_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_images OWNER TO postgres;

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

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


ALTER TABLE public.ad_images_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.ad_images_id_seq OWNED BY public.ad_images.id;


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

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


ALTER TABLE public.ad_plans_id_seq OWNER TO postgres;

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

CREATE TABLE public.ad_plans (
    id bigint DEFAULT nextval('public.ad_plans_id_seq'::regclass) NOT NULL,
    pricing_plan_id bigint NOT NULL,
    ad_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    duration character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    tax character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    duration_id bigint,
    payment_method character varying(255),
    total_price character varying(255),
    discount character varying(255),
    promo_code character varying(255),
    payment_id bigint
);


ALTER TABLE public.ad_plans OWNER TO postgres;

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

CREATE TABLE public.ad_report_types (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_report_types OWNER TO postgres;

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

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


ALTER TABLE public.ad_report_types_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.ad_report_types_id_seq OWNED BY public.ad_report_types.id;


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

CREATE TABLE public.ad_reports (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    report_type_id bigint NOT NULL,
    user_id bigint NOT NULL,
    description text,
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_reports OWNER TO postgres;

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

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


ALTER TABLE public.ad_reports_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.ad_reports_id_seq OWNED BY public.ad_reports.id;


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

CREATE TABLE public.ad_requests (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    parent_category_id bigint NOT NULL,
    sub_category_id bigint NOT NULL,
    first_name character varying(255) NOT NULL,
    dial_code character varying(255) NOT NULL,
    phone_number character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    description text NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_requests OWNER TO postgres;

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

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


ALTER TABLE public.ad_requests_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.ad_requests_id_seq OWNED BY public.ad_requests.id;


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

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


ALTER TABLE public.ads_id_seq OWNER TO postgres;

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

CREATE TABLE public.badges (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    description text NOT NULL,
    description_ar text NOT NULL,
    icon character varying(255),
    status integer DEFAULT 0 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.badges OWNER TO postgres;

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

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


ALTER TABLE public.badges_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.badges_id_seq OWNED BY public.badges.id;


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

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


ALTER TABLE public.bookings_id_seq OWNER TO postgres;

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

CREATE TABLE public.cache (
    key character varying(255) NOT NULL,
    value text NOT NULL,
    expiration integer NOT NULL
);


ALTER TABLE public.cache OWNER TO postgres;

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

CREATE TABLE public.cache_locks (
    key character varying(255) NOT NULL,
    owner character varying(255) NOT NULL,
    expiration integer NOT NULL
);


ALTER TABLE public.cache_locks OWNER TO postgres;

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

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


ALTER TABLE public.categories_id_seq OWNER TO postgres;

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

CREATE TABLE public.categories (
    id bigint DEFAULT nextval('public.categories_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    parent_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    sort_order integer DEFAULT 0,
    icon character varying(255),
    CONSTRAINT categories_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.categories OWNER TO postgres;

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

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


ALTER TABLE public.category_atributes_id_seq OWNER TO postgres;

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

CREATE TABLE public.category_atributes (
    id bigint DEFAULT nextval('public.category_atributes_id_seq'::regclass) NOT NULL,
    category_id integer NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 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.category_atributes OWNER TO postgres;

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

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


ALTER TABLE public.category_atributes_value_id_seq OWNER TO postgres;

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

CREATE TABLE public.category_atributes_value (
    id bigint DEFAULT nextval('public.category_atributes_value_id_seq'::regclass) NOT NULL,
    category_id integer NOT NULL,
    attribute_id integer NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 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.category_atributes_value OWNER TO postgres;

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

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


ALTER TABLE public.category_fields_id_seq OWNER TO postgres;

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

CREATE TABLE public.category_fields (
    id bigint DEFAULT nextval('public.category_fields_id_seq'::regclass) NOT NULL,
    category_id bigint NOT NULL,
    type character varying(255) NOT NULL,
    label character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    label_ar character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    options text,
    attribute_id bigint,
    file_types character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "order" bigint,
    field_id bigint,
    required character varying(255) DEFAULT '0'::character varying,
    deleted_at timestamp(0) without time zone,
    section character varying(255) DEFAULT 'basic'::character varying
);


ALTER TABLE public.category_fields OWNER TO postgres;

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

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


ALTER TABLE public.challenges_id_seq OWNER TO postgres;

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

CREATE TABLE public.challenges (
    id bigint DEFAULT nextval('public.challenges_id_seq'::regclass) NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    challenge_type smallint NOT NULL,
    target_type integer,
    target_value integer NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    status smallint DEFAULT '0'::smallint 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.challenges OWNER TO postgres;

--
-- Name: COLUMN challenges.user_id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.challenges.user_id IS 'to understand whom is created';


--
-- Name: COLUMN challenges.challenge_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.challenges.challenge_type IS '1 for all, 2 for company, 3 for individual';


--
-- Name: COLUMN challenges.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.challenges.status IS '1 for active, 0 for inactive';


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

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


ALTER TABLE public.challenges_companies_id_seq OWNER TO postgres;

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

CREATE TABLE public.challenges_companies (
    id bigint DEFAULT nextval('public.challenges_companies_id_seq'::regclass) NOT NULL,
    challenge_id bigint NOT NULL,
    company_id bigint 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.challenges_companies 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cities (
    id bigint DEFAULT nextval('public.cities_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone,
    country_id bigint
);


ALTER TABLE public.cities OWNER TO postgres;

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

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


ALTER TABLE public.cms_pages_id_seq OWNER TO postgres;

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

CREATE TABLE public.cms_pages (
    id bigint DEFAULT nextval('public.cms_pages_id_seq'::regclass) NOT NULL,
    title character varying(255) NOT NULL,
    content text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    content_ar text,
    status integer DEFAULT 0 NOT NULL,
    title_ar character varying(255)
);


ALTER TABLE public.cms_pages OWNER TO postgres;

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

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


ALTER TABLE public.companies_id_seq OWNER TO postgres;

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

CREATE TABLE public.companies (
    id bigint DEFAULT nextval('public.companies_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    brand_logo character varying(255),
    description text,
    description_ar text,
    address character varying(255),
    trade_license character varying(255),
    trade_license_expiry date,
    user_id integer 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.companies OWNER TO postgres;

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

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


ALTER TABLE public.contact_us_id_seq OWNER TO postgres;

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

CREATE TABLE public.contact_us (
    id bigint DEFAULT nextval('public.contact_us_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    subject character varying(255),
    message text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.contact_us OWNER TO postgres;

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

CREATE TABLE public.countries (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    status integer DEFAULT 0 NOT NULL,
    dial_code character varying(255),
    name_ar character varying(255),
    flag_icon character varying(255)
);


ALTER TABLE public.countries OWNER TO postgres;

--
-- Name: COLUMN countries.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.countries.status IS '0: Inactive, 1: Active';


--
-- Name: COLUMN countries.dial_code; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.countries.dial_code IS 'Country dialing code';


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

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


ALTER TABLE public.countries_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.countries_id_seq OWNED BY public.countries.id;


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

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


ALTER TABLE public.delivery_types_id_seq OWNER TO postgres;

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

CREATE TABLE public.delivery_types (
    id bigint DEFAULT nextval('public.delivery_types_id_seq'::regclass) NOT NULL,
    translation_type_id bigint,
    name character varying(255) NOT NULL,
    description text,
    price_type character varying(255) DEFAULT 'fixed'::character varying NOT NULL,
    price numeric(10,2) DEFAULT '0'::numeric,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT delivery_types_price_type_check CHECK (((price_type)::text = ANY (ARRAY[('free'::character varying)::text, ('fixed'::character varying)::text]))),
    CONSTRAINT delivery_types_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.delivery_types OWNER TO postgres;

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

CREATE TABLE public.dress_codes (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    gender character varying(255) NOT NULL,
    image character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT dress_codes_gender_check CHECK (((gender)::text = ANY ((ARRAY['Male'::character varying, 'Female'::character varying])::text[])))
);


ALTER TABLE public.dress_codes OWNER TO postgres;

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

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


ALTER TABLE public.dress_codes_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.dress_codes_id_seq OWNED BY public.dress_codes.id;


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

CREATE TABLE public.educations (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.educations OWNER TO postgres;

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

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


ALTER TABLE public.educations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.educations_id_seq OWNED BY public.educations.id;


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

CREATE TABLE public.emirates (
    id bigint NOT NULL,
    country_id integer NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 0 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.emirates OWNER TO postgres;

--
-- Name: COLUMN emirates.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.emirates.status IS '0: Inactive, 1: Active';


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

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


ALTER TABLE public.emirates_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.emirates_id_seq OWNED BY public.emirates.id;


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

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


ALTER TABLE public.event_types_id_seq OWNER TO postgres;

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

CREATE TABLE public.event_types (
    id bigint DEFAULT nextval('public.event_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.event_types 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.events (
    id bigint DEFAULT nextval('public.events_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    event_type_id bigint NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    description text NOT NULL,
    images json,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT events_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.events 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.failed_jobs (
    id bigint DEFAULT nextval('public.failed_jobs_id_seq'::regclass) NOT NULL,
    uuid character varying(255) 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 CURRENT_TIMESTAMP NOT NULL
);


ALTER TABLE public.failed_jobs OWNER TO postgres;

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

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


ALTER TABLE public.faqs_id_seq OWNER TO postgres;

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

CREATE TABLE public.faqs (
    id bigint DEFAULT nextval('public.faqs_id_seq'::regclass) NOT NULL,
    question character varying(255) NOT NULL,
    answer text NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.faqs OWNER TO postgres;

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

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


ALTER TABLE public.field_conditions_id_seq OWNER TO postgres;

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

CREATE TABLE public.field_conditions (
    id bigint DEFAULT nextval('public.field_conditions_id_seq'::regclass) NOT NULL,
    category_id bigint NOT NULL,
    attribute_id bigint,
    operator character varying(255) NOT NULL,
    value character varying(255) NOT NULL,
    field_id character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    target_field_id bigint,
    source_field_id bigint
);


ALTER TABLE public.field_conditions OWNER TO postgres;

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

CREATE TABLE public.genetic_disease_variants (
    id bigint NOT NULL,
    genetic_disease_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) 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.genetic_disease_variants OWNER TO postgres;

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

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


ALTER TABLE public.genetic_disease_variants_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.genetic_disease_variants_id_seq OWNED BY public.genetic_disease_variants.id;


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

CREATE TABLE public.genetic_diseases (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.genetic_diseases OWNER TO postgres;

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

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


ALTER TABLE public.genetic_diseases_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.genetic_diseases_id_seq OWNED BY public.genetic_diseases.id;


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

CREATE TABLE public.home_element_ads (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    element_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_element_ads OWNER TO postgres;

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

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


ALTER TABLE public.home_element_ads_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.home_element_ads_id_seq OWNED BY public.home_element_ads.id;


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

CREATE TABLE public.home_elements (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    item_id bigint NOT NULL,
    sort_order integer NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_elements OWNER TO postgres;

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

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


ALTER TABLE public.home_elements_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.home_elements_id_seq OWNED BY public.home_elements.id;


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

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


ALTER TABLE public.home_logos_id_seq OWNER TO postgres;

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

CREATE TABLE public.home_logos (
    id bigint DEFAULT nextval('public.home_logos_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status boolean DEFAULT true NOT NULL,
    image character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    slug character varying(255),
    name_ar character varying(255)
);


ALTER TABLE public.home_logos OWNER TO postgres;

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

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


ALTER TABLE public.home_page_settings_id_seq OWNER TO postgres;

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

CREATE TABLE public.home_page_settings (
    id bigint DEFAULT nextval('public.home_page_settings_id_seq'::regclass) NOT NULL,
    key character varying(255) NOT NULL,
    value text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_page_settings OWNER TO postgres;

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

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


ALTER TABLE public.insights_id_seq OWNER TO postgres;

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

CREATE TABLE public.insights (
    id bigint DEFAULT nextval('public.insights_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    title character varying(255),
    content text NOT NULL,
    image character varying(255),
    status boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.insights OWNER TO postgres;

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

CREATE TABLE public.job_batches (
    id character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    total_jobs integer NOT NULL,
    pending_jobs integer NOT NULL,
    failed_jobs integer NOT NULL,
    failed_job_ids text NOT NULL,
    options text,
    cancelled_at integer,
    created_at integer NOT NULL,
    finished_at integer
);


ALTER TABLE public.job_batches 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.jobs (
    id bigint DEFAULT nextval('public.jobs_id_seq'::regclass) NOT NULL,
    queue character varying(255) 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: known_languages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.known_languages (
    id bigint NOT NULL,
    user_id bigint,
    language_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.known_languages OWNER TO postgres;

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

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


ALTER TABLE public.known_languages_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.known_languages_id_seq OWNED BY public.known_languages.id;


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

CREATE TABLE public.languages (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    code character varying(255) NOT NULL,
    status integer DEFAULT 0 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.languages OWNER TO postgres;

--
-- Name: COLUMN languages.name; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.name IS 'Language name';


--
-- Name: COLUMN languages.name_ar; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.name_ar IS 'Language name in Arabic';


--
-- Name: COLUMN languages.code; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.code IS 'Language code, e.g., en, fr';


--
-- Name: COLUMN languages.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.status IS '0: Inactive, 1: Active';


--
-- Name: COLUMN languages.deleted_at; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.deleted_at IS 'Soft delete timestamp';


--
-- 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_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.languages_id_seq1 OWNER TO postgres;

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

ALTER SEQUENCE public.languages_id_seq1 OWNED BY public.languages.id;


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

CREATE TABLE public.looking_ads (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    category_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.looking_ads OWNER TO postgres;

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

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


ALTER TABLE public.looking_ads_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.looking_ads_id_seq OWNED BY public.looking_ads.id;


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

CREATE TABLE public.main_notifications (
    id bigint NOT NULL,
    title character varying(255) NOT NULL,
    content text NOT NULL,
    generated_by character varying(255) NOT NULL,
    image character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.main_notifications OWNER TO postgres;

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

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


ALTER TABLE public.main_notifications_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.main_notifications_id_seq OWNED BY public.main_notifications.id;


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

CREATE TABLE public.marital_statuses (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    show_wife_children_option boolean DEFAULT false NOT NULL,
    gender character varying(255)
);


ALTER TABLE public.marital_statuses OWNER TO postgres;

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

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


ALTER TABLE public.marital_statuses_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.marital_statuses_id_seq OWNED BY public.marital_statuses.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
    NO MAXVALUE
    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(255) NOT NULL,
    batch integer NOT NULL
);


ALTER TABLE public.migrations OWNER TO postgres;

--
-- 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(255) 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(255) NOT NULL,
    model_id bigint NOT NULL
);


ALTER TABLE public.model_has_roles OWNER TO postgres;

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

CREATE TABLE public.motor_makes (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    icon character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.motor_makes OWNER TO postgres;

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

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


ALTER TABLE public.motor_makes_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.motor_makes_id_seq OWNED BY public.motor_makes.id;


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

CREATE TABLE public.motor_models (
    id bigint NOT NULL,
    make_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.motor_models OWNER TO postgres;

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

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


ALTER TABLE public.motor_models_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.motor_models_id_seq OWNED BY public.motor_models.id;


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

CREATE TABLE public.nationalities (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    country_code character varying(255)
);


ALTER TABLE public.nationalities OWNER TO postgres;

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

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


ALTER TABLE public.nationalities_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.nationalities_id_seq OWNED BY public.nationalities.id;


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

CREATE TABLE public.notification_settings (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    slug character varying(255) NOT NULL,
    value boolean NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.notification_settings OWNER TO postgres;

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

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


ALTER TABLE public.notification_settings_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.notification_settings_id_seq OWNED BY public.notification_settings.id;


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

CREATE TABLE public.notifications (
    id bigint NOT NULL,
    title character varying(255) NOT NULL,
    content text NOT NULL,
    user_id bigint NOT NULL,
    generated_by bigint,
    generated_to bigint,
    is_read character varying(255) DEFAULT 'no'::character varying NOT NULL,
    image character varying(255),
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    main_notification_id bigint,
    CONSTRAINT notifications_is_read_check CHECK (((is_read)::text = ANY ((ARRAY['yes'::character varying, 'no'::character varying])::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: 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.packages (
    id bigint DEFAULT nextval('public.packages_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    price double precision NOT NULL,
    status smallint DEFAULT '0'::smallint 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.packages OWNER TO postgres;

--
-- Name: COLUMN packages.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.packages.status IS '0 - Inactive, 1 - Active';


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

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


ALTER TABLE public.packages_addons_id_seq OWNER TO postgres;

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

CREATE TABLE public.packages_addons (
    id bigint DEFAULT nextval('public.packages_addons_id_seq'::regclass) NOT NULL,
    package_id bigint NOT NULL,
    title character varying(255) NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.packages_addons OWNER TO postgres;

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

CREATE TABLE public.parent_approvals (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    token character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    approved_at timestamp(0) without time zone,
    rejected_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.parent_approvals OWNER TO postgres;

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

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


ALTER TABLE public.parent_approvals_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.parent_approvals_id_seq OWNED BY public.parent_approvals.id;


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

CREATE TABLE public.parent_categories (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    icon character varying(255),
    sort_order integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.parent_categories OWNER TO postgres;

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

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


ALTER TABLE public.parent_categories_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.parent_categories_id_seq OWNED BY public.parent_categories.id;


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

CREATE TABLE public.password_reset_tokens (
    email character varying(255) NOT NULL,
    token character varying(255) NOT NULL,
    created_at timestamp(0) without time zone
);


ALTER TABLE public.password_reset_tokens OWNER TO postgres;

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

CREATE TABLE public.payment_reports (
    id bigint NOT NULL,
    transaction_id character varying(255),
    payment_status character varying(255),
    user_id integer DEFAULT 0 NOT NULL,
    ref_id character varying(255),
    amount numeric(8,2) NOT NULL,
    method_type integer DEFAULT 1 NOT NULL,
    vat numeric(8,2) DEFAULT '0'::numeric NOT NULL,
    wallet_amount_used numeric(8,2) DEFAULT '0'::numeric NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    ad_id bigint,
    currency character varying(255)
);


ALTER TABLE public.payment_reports OWNER TO postgres;

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

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


ALTER TABLE public.payment_reports_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.payment_reports_id_seq OWNED BY public.payment_reports.id;


--
-- 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.permissions (
    id bigint DEFAULT nextval('public.permissions_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    guard_name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.permissions OWNER TO postgres;

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

CREATE TABLE public.personal_access_tokens (
    id bigint NOT NULL,
    tokenable_type character varying(255) NOT NULL,
    tokenable_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    token character varying(64) NOT NULL,
    abilities text,
    last_used_at timestamp(0) without time zone,
    expires_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.personal_access_tokens OWNER TO postgres;

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

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


ALTER TABLE public.personal_access_tokens_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.personal_access_tokens_id_seq OWNED BY public.personal_access_tokens.id;


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

CREATE TABLE public.plan_durations (
    id bigint NOT NULL,
    pricing_plan_id bigint NOT NULL,
    duration character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT plan_durations_status_check CHECK (((status)::text = ANY ((ARRAY['0'::character varying, '1'::character varying])::text[])))
);


ALTER TABLE public.plan_durations OWNER TO postgres;

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

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


ALTER TABLE public.plan_durations_id_seq OWNER TO postgres;

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

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


ALTER TABLE public.plan_durations_id_seq1 OWNER TO postgres;

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

ALTER SEQUENCE public.plan_durations_id_seq1 OWNED BY public.plan_durations.id;


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

CREATE TABLE public.popular_ads (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    category_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.popular_ads OWNER TO postgres;

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

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


ALTER TABLE public.popular_ads_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.popular_ads_id_seq OWNED BY public.popular_ads.id;


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

CREATE TABLE public.pricing_plans (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    duration character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    description character varying(255) NOT NULL,
    description_ar character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    type character varying(255) DEFAULT 'basic'::character varying,
    CONSTRAINT pricing_plans_status_check CHECK (((status)::text = ANY ((ARRAY['0'::character varying, '1'::character varying])::text[])))
);


ALTER TABLE public.pricing_plans OWNER TO postgres;

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

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


ALTER TABLE public.pricing_plans_id_seq OWNER TO postgres;

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

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


ALTER TABLE public.pricing_plans_id_seq1 OWNER TO postgres;

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

ALTER SEQUENCE public.pricing_plans_id_seq1 OWNED BY public.pricing_plans.id;


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

CREATE TABLE public.professions (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.professions OWNER TO postgres;

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

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


ALTER TABLE public.professions_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.professions_id_seq OWNED BY public.professions.id;


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

CREATE TABLE public.promo_codes (
    id bigint NOT NULL,
    code character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    value integer NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    total_limit integer,
    user_limit integer DEFAULT 0 NOT NULL,
    daily_limit integer DEFAULT 0 NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    pricing_plan_id json,
    CONSTRAINT promo_codes_status_check CHECK (((status)::text = ANY ((ARRAY['0'::character varying, '1'::character varying])::text[]))),
    CONSTRAINT promo_codes_type_check CHECK (((type)::text = ANY ((ARRAY['percentage'::character varying, 'fixed'::character varying])::text[])))
);


ALTER TABLE public.promo_codes OWNER TO postgres;

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

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


ALTER TABLE public.promo_codes_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.promo_codes_id_seq OWNED BY public.promo_codes.id;


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

CREATE TABLE public.property_amenities (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.property_amenities OWNER TO postgres;

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

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


ALTER TABLE public.property_amenities_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.property_amenities_id_seq OWNED BY public.property_amenities.id;


--
-- 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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.quotes (
    id bigint DEFAULT nextval('public.quotes_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    from_lang character varying(255) NOT NULL,
    to_lang text NOT NULL,
    total_pages integer NOT NULL,
    word_count integer NOT NULL,
    service_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.quotes OWNER TO postgres;

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

CREATE TABLE public.report_types (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.report_types OWNER TO postgres;

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

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


ALTER TABLE public.report_types_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.report_types_id_seq OWNED BY public.report_types.id;


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

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


ALTER TABLE public.reviews_id_seq OWNER TO postgres;

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

CREATE TABLE public.reviews (
    id bigint DEFAULT nextval('public.reviews_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status boolean DEFAULT true NOT NULL,
    review text NOT NULL,
    image character varying(255),
    designation character varying(255),
    rating numeric(2,1) DEFAULT '0'::numeric NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.reviews OWNER TO postgres;

--
-- 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_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; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.roles (
    id bigint DEFAULT nextval('public.roles_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    guard_name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.roles OWNER TO postgres;

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

CREATE TABLE public.sects (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sects OWNER TO postgres;

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

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


ALTER TABLE public.sects_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.sects_id_seq OWNED BY public.sects.id;


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

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


ALTER TABLE public.service_atributes_id_seq OWNER TO postgres;

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

CREATE TABLE public.service_atributes (
    id bigint DEFAULT nextval('public.service_atributes_id_seq'::regclass) NOT NULL,
    service_id integer NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 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.service_atributes OWNER TO postgres;

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

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


ALTER TABLE public.service_atributes_value_id_seq OWNER TO postgres;

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

CREATE TABLE public.service_atributes_value (
    id bigint DEFAULT nextval('public.service_atributes_value_id_seq'::regclass) NOT NULL,
    service_id integer NOT NULL,
    attribute_id integer NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone,
    price numeric(10,2) DEFAULT '0'::numeric NOT NULL
);


ALTER TABLE public.service_atributes_value OWNER TO postgres;

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

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


ALTER TABLE public.service_booking_fields_id_seq OWNER TO postgres;

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

CREATE TABLE public.service_booking_fields (
    id bigint DEFAULT nextval('public.service_booking_fields_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    type character varying(255) NOT NULL,
    label character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    options text,
    attribute_id bigint,
    file_types character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    field_id bigint
);


ALTER TABLE public.service_booking_fields OWNER TO postgres;

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

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


ALTER TABLE public.service_details_id_seq OWNER TO postgres;

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

CREATE TABLE public.service_details (
    id bigint DEFAULT nextval('public.service_details_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    title character varying(255) NOT NULL,
    content text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.service_details OWNER TO postgres;

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

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


ALTER TABLE public.service_faqs_id_seq OWNER TO postgres;

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

CREATE TABLE public.service_faqs (
    id bigint DEFAULT nextval('public.service_faqs_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    question character varying(255) NOT NULL,
    answer text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.service_faqs OWNER TO postgres;

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

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


ALTER TABLE public.service_pricing_id_seq OWNER TO postgres;

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

CREATE TABLE public.service_pricing (
    id bigint DEFAULT nextval('public.service_pricing_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    translation_from bigint,
    translation_to bigint,
    price numeric(10,2),
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT service_pricing_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.service_pricing OWNER TO postgres;

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

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


ALTER TABLE public.services_id_seq OWNER TO postgres;

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

CREATE TABLE public.services (
    id bigint DEFAULT nextval('public.services_id_seq'::regclass) NOT NULL,
    title character varying(255) NOT NULL,
    service_type_id integer NOT NULL,
    subtitle character varying(255),
    description text,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    background_image character varying(255),
    service_image character varying(255),
    other_image character varying(255),
    price_from real,
    price_to real,
    CONSTRAINT services_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.services OWNER TO postgres;

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

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


ALTER TABLE public.services_bookings_id_seq OWNER TO postgres;

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

CREATE TABLE public.services_bookings (
    id bigint DEFAULT nextval('public.services_bookings_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    booking_id character varying(255),
    first_name character varying(255),
    last_name character varying(255),
    company_name character varying(255),
    country character varying(255),
    street_address character varying(255),
    apartment character varying(255),
    city character varying(255),
    state character varying(255),
    phone character varying(255),
    email character varying(255),
    file_namesconfirm character varying(255),
    order_notes text,
    total numeric(10,2) DEFAULT '0'::numeric NOT NULL,
    status character varying(255) DEFAULT 'Pending'::character varying NOT NULL,
    CONSTRAINT services_bookings_status_check CHECK (((status)::text = ANY (ARRAY[('Pending'::character varying)::text, ('Under Process'::character varying)::text, ('Completed'::character varying)::text, ('Ready for Delivery'::character varying)::text])))
);


ALTER TABLE public.services_bookings OWNER TO postgres;

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

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


ALTER TABLE public.services_types_id_seq OWNER TO postgres;

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

CREATE TABLE public.services_types (
    id bigint DEFAULT nextval('public.services_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT services_types_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.services_types OWNER TO postgres;

--
-- Name: COLUMN services_types.name; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.services_types.name IS 'Service type name';


--
-- Name: COLUMN services_types.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.services_types.status IS 'Status of the service type';


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

CREATE TABLE public.sessions (
    id character varying(255) NOT NULL,
    user_id bigint,
    ip_address character varying(45),
    user_agent text,
    payload text NOT NULL,
    last_activity integer NOT NULL
);


ALTER TABLE public.sessions OWNER TO postgres;

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

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


ALTER TABLE public.site_settings_id_seq OWNER TO postgres;

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

CREATE TABLE public.site_settings (
    id bigint DEFAULT nextval('public.site_settings_id_seq'::regclass) NOT NULL,
    key character varying(255) NOT NULL,
    value text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.site_settings OWNER TO postgres;

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

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


ALTER TABLE public.slider_buttons_id_seq OWNER TO postgres;

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

CREATE TABLE public.slider_items (
    id bigint NOT NULL,
    slider_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    image character varying(255) NOT NULL,
    status integer DEFAULT 0 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.slider_items OWNER TO postgres;

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

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


ALTER TABLE public.slider_items_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.slider_items_id_seq OWNED BY public.slider_items.id;


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

CREATE TABLE public.sliders (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    category_id bigint NOT NULL,
    status integer DEFAULT 0 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.sliders OWNER TO postgres;

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

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


ALTER TABLE public.sliders_id_seq OWNER TO postgres;

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

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


ALTER TABLE public.sliders_id_seq1 OWNER TO postgres;

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

ALTER SEQUENCE public.sliders_id_seq1 OWNED BY public.sliders.id;


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

CREATE TABLE public.sports (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    image character varying(255)
);


ALTER TABLE public.sports OWNER TO postgres;

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

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


ALTER TABLE public.sports_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.sports_id_seq OWNED BY public.sports.id;


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

CREATE TABLE public.support_tickets (
    id bigint NOT NULL,
    ticket_number character varying(255),
    user_id bigint NOT NULL,
    subject character varying(255) NOT NULL,
    description text NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.support_tickets OWNER TO postgres;

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

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


ALTER TABLE public.support_tickets_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.support_tickets_id_seq OWNED BY public.support_tickets.id;


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

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


ALTER TABLE public.target_types_id_seq OWNER TO postgres;

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

CREATE TABLE public.target_types (
    id bigint DEFAULT nextval('public.target_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.target_types OWNER TO postgres;

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

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


ALTER TABLE public.target_types_company_id_seq OWNER TO postgres;

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

CREATE TABLE public.target_types_company (
    id bigint DEFAULT nextval('public.target_types_company_id_seq'::regclass) NOT NULL,
    company_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.target_types_company OWNER TO postgres;

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

CREATE TABLE public.temp_orders (
    id bigint NOT NULL,
    plan_id bigint NOT NULL,
    user_id bigint NOT NULL,
    duration_id bigint,
    duration character varying(255) NOT NULL,
    payment_method character varying(255) NOT NULL,
    total_price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    discount character varying(255),
    promo_code character varying(255),
    grand_total character varying(255) NOT NULL,
    status character varying(255) DEFAULT 'pending'::character varying NOT NULL,
    transaction_id character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.temp_orders OWNER TO postgres;

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

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


ALTER TABLE public.temp_orders_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.temp_orders_id_seq OWNED BY public.temp_orders.id;


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

CREATE TABLE public.temp_users (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    nick_name character varying(255) NOT NULL,
    dial_code character varying(255) NOT NULL,
    phone character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    gender character varying(255) NOT NULL,
    password character varying(255) NOT NULL,
    dob date NOT NULL,
    country_id bigint NOT NULL,
    user_phone_otp character varying(255),
    user_email_otp character varying(255),
    user_device_type character varying(255),
    user_device_token character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    parent_name character varying(255),
    parent_email character varying(255)
);


ALTER TABLE public.temp_users OWNER TO postgres;

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

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


ALTER TABLE public.temp_users_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.temp_users_id_seq OWNED BY public.temp_users.id;


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

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


ALTER TABLE public.translation_types_id_seq OWNER TO postgres;

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

CREATE TABLE public.translation_types (
    id bigint DEFAULT nextval('public.translation_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    description text,
    price_type character varying(255) DEFAULT 'free'::character varying NOT NULL,
    price numeric(10,2) DEFAULT '0'::numeric,
    percentage numeric(5,2) DEFAULT '0'::numeric,
    category character varying(255),
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT translation_types_price_type_check CHECK (((price_type)::text = ANY (ARRAY[('free'::character varying)::text, ('rush_fee'::character varying)::text, ('fixed'::character varying)::text]))),
    CONSTRAINT translation_types_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.translation_types OWNER TO postgres;

--
-- Name: COLUMN translation_types.name; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.name IS 'Translation Type Name';


--
-- Name: COLUMN translation_types.description; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.description IS 'Description of the Translation Type';


--
-- Name: COLUMN translation_types.price_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.price_type IS 'Price Type';


--
-- Name: COLUMN translation_types.price; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.price IS 'Price for the translation type';


--
-- Name: COLUMN translation_types.percentage; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.percentage IS 'Percentage for Rush Fee';


--
-- Name: COLUMN translation_types.category; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.category IS 'Category for the translation type';


--
-- Name: COLUMN translation_types.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.status IS 'Status of the translation type';


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

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


ALTER TABLE public.translation_types_categories_id_seq OWNER TO postgres;

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

CREATE TABLE public.translation_types_categories (
    id bigint DEFAULT nextval('public.translation_types_categories_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    slug character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    description text,
    price_type character varying(255) DEFAULT 'free'::character varying NOT NULL,
    price numeric(10,2) DEFAULT '0'::numeric,
    percentage numeric(5,2) DEFAULT '0'::numeric,
    CONSTRAINT translation_types_categories_price_type_check CHECK (((price_type)::text = ANY (ARRAY[('free'::character varying)::text, ('rush_fee'::character varying)::text, ('fixed'::character varying)::text]))),
    CONSTRAINT translation_types_categories_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.translation_types_categories OWNER TO postgres;

--
-- Name: COLUMN translation_types_categories.description; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.description IS 'Description of the Translation Type';


--
-- Name: COLUMN translation_types_categories.price_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.price_type IS 'Price Type';


--
-- Name: COLUMN translation_types_categories.price; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.price IS 'Price for the translation type';


--
-- Name: COLUMN translation_types_categories.percentage; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.percentage IS 'Percentage for Rush Fee';


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

CREATE TABLE public.user_activities (
    id bigint NOT NULL,
    user_id bigint,
    activity_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_activities OWNER TO postgres;

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

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


ALTER TABLE public.user_activities_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_activities_id_seq OWNED BY public.user_activities.id;


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

CREATE TABLE public.user_blocks (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    blocked_user_id bigint NOT NULL,
    reason character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_blocks OWNER TO postgres;

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

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


ALTER TABLE public.user_blocks_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_blocks_id_seq OWNED BY public.user_blocks.id;


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

CREATE TABLE public.user_children (
    id bigint NOT NULL,
    user_id bigint,
    kid_count integer NOT NULL,
    age character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_children OWNER TO postgres;

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

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


ALTER TABLE public.user_children_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_children_id_seq OWNED BY public.user_children.id;


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

CREATE TABLE public.user_connection (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    connected_user_id bigint NOT NULL,
    is_blocked integer DEFAULT 0 NOT NULL,
    reason text,
    hide_image integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_connection OWNER TO postgres;

--
-- Name: COLUMN user_connection.is_blocked; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.user_connection.is_blocked IS '1=block,0=active';


--
-- Name: COLUMN user_connection.hide_image; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.user_connection.hide_image IS '1=hide,0=show';


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

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


ALTER TABLE public.user_connection_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_connection_id_seq OWNED BY public.user_connection.id;


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

CREATE TABLE public.user_connections (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    connected_user_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    hide_image integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.user_connections OWNER TO postgres;

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

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


ALTER TABLE public.user_connections_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_connections_id_seq OWNED BY public.user_connections.id;


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

CREATE TABLE public.user_details (
    id bigint NOT NULL,
    user_id bigint,
    sect_id bigint,
    education_id bigint,
    profession_id bigint,
    height_cm character varying(255),
    height_ft character varying(255),
    weight_kg character varying(255),
    weight_lbs character varying(255),
    marital_status_id bigint,
    wives integer,
    children integer,
    religious_practice integer,
    dress_code_id bigint,
    smoking integer,
    genetic_disease integer,
    genetic_disease_id bigint,
    about text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_details OWNER TO postgres;

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

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


ALTER TABLE public.user_details_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_details_id_seq OWNED BY public.user_details.id;


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

CREATE TABLE public.user_disease_variants (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    genetic_disease_id bigint NOT NULL,
    genetic_disease_variant_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_disease_variants OWNER TO postgres;

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

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


ALTER TABLE public.user_disease_variants_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_disease_variants_id_seq OWNED BY public.user_disease_variants.id;


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

CREATE TABLE public.user_diseases (
    id bigint NOT NULL,
    user_id bigint,
    genetic_disease_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    genetic_disease_variant_id bigint
);


ALTER TABLE public.user_diseases OWNER TO postgres;

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

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


ALTER TABLE public.user_diseases_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_diseases_id_seq OWNED BY public.user_diseases.id;


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

CREATE TABLE public.user_dress_codes (
    id bigint NOT NULL,
    user_id bigint,
    dress_code_id integer,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_dress_codes OWNER TO postgres;

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

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


ALTER TABLE public.user_dress_codes_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_dress_codes_id_seq OWNED BY public.user_dress_codes.id;


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

CREATE TABLE public.user_educations (
    id bigint NOT NULL,
    user_id bigint,
    education_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_educations OWNER TO postgres;

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

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


ALTER TABLE public.user_educations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_educations_id_seq OWNED BY public.user_educations.id;


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

CREATE TABLE public.user_images (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    url character varying(255) NOT NULL,
    is_hidden integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_images OWNER TO postgres;

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

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


ALTER TABLE public.user_images_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_images_id_seq OWNED BY public.user_images.id;


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

CREATE TABLE public.user_marital_statuses (
    id bigint NOT NULL,
    user_id bigint,
    marital_status_id integer,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_marital_statuses OWNER TO postgres;

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

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


ALTER TABLE public.user_marital_statuses_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_marital_statuses_id_seq OWNED BY public.user_marital_statuses.id;


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

CREATE TABLE public.user_matches (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    matched_user_id bigint NOT NULL,
    match_percentage integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_matches OWNER TO postgres;

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

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


ALTER TABLE public.user_matches_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_matches_id_seq OWNED BY public.user_matches.id;


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

CREATE TABLE public.user_plans (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    description character varying(255) NOT NULL,
    description_ar character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    payment_method character varying(255),
    total_price character varying(255),
    discount character varying(255),
    promo_code character varying(255),
    payment_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    plan_id bigint,
    expiry_date date,
    duration character varying(255) DEFAULT 'monthly'::character varying,
    CONSTRAINT user_plans_status_check CHECK (((status)::text = ANY ((ARRAY['0'::character varying, '1'::character varying])::text[])))
);


ALTER TABLE public.user_plans OWNER TO postgres;

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

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


ALTER TABLE public.user_plans_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_plans_id_seq OWNED BY public.user_plans.id;


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

CREATE TABLE public.user_preferences (
    id bigint NOT NULL,
    user_id bigint,
    sect_id character varying(255),
    religion_practice character varying(255),
    marital_status character varying(255),
    education_id character varying(255),
    profession_id character varying(255),
    dress_code_id character varying(255),
    smoking character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    weight_all integer DEFAULT 0,
    height_all integer DEFAULT 0,
    from_height_cm character varying(255),
    to_height_cm character varying(255),
    from_height_ft character varying(255),
    to_height_ft character varying(255),
    from_weight_kg character varying(255),
    from_weight_lbs character varying(255),
    to_weight_kg character varying(255),
    to_weight_lbs character varying(255),
    prefrance_setup_completed integer DEFAULT 0
);


ALTER TABLE public.user_preferences OWNER TO postgres;

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

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


ALTER TABLE public.user_preferences_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_preferences_id_seq OWNED BY public.user_preferences.id;


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

CREATE TABLE public.user_professions (
    id bigint NOT NULL,
    user_id bigint,
    profession_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_professions OWNER TO postgres;

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

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


ALTER TABLE public.user_professions_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_professions_id_seq OWNED BY public.user_professions.id;


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

CREATE TABLE public.user_reports (
    id bigint NOT NULL,
    reporter_id bigint NOT NULL,
    reported_user_id bigint NOT NULL,
    reason character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    report_type_id integer
);


ALTER TABLE public.user_reports OWNER TO postgres;

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

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


ALTER TABLE public.user_reports_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_reports_id_seq OWNED BY public.user_reports.id;


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

CREATE TABLE public.user_requests (
    id bigint NOT NULL,
    sender_id bigint NOT NULL,
    receiver_id bigint NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_requests OWNER TO postgres;

--
-- Name: COLUMN user_requests.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.user_requests.status IS '0: pending, 1: accepted, 2: rejected';


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

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


ALTER TABLE public.user_requests_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_requests_id_seq OWNED BY public.user_requests.id;


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

CREATE TABLE public.user_sects (
    id bigint NOT NULL,
    user_id bigint,
    sect_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_sects OWNER TO postgres;

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

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


ALTER TABLE public.user_sects_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_sects_id_seq OWNED BY public.user_sects.id;


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

CREATE TABLE public.user_sports (
    id bigint NOT NULL,
    user_id bigint,
    sport_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_sports OWNER TO postgres;

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

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


ALTER TABLE public.user_sports_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.user_sports_id_seq OWNED BY public.user_sports.id;


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

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


ALTER TABLE public.users_id_seq OWNER TO postgres;

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

CREATE TABLE public.users (
    id bigint DEFAULT nextval('public.users_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    email_verified_at timestamp(0) without time zone,
    password character varying(255) NOT NULL,
    remember_token character varying(100),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    first_name character varying(255),
    last_name character varying(255),
    dial_code character varying(255),
    phone character varying(255),
    country_id integer,
    emirates_id integer,
    status integer DEFAULT 0,
    deleted_at timestamp(0) without time zone,
    role_id bigint,
    gender character varying(255),
    profile_image character varying(255),
    dob date,
    is_verified integer DEFAULT 0,
    user_device_type character varying(255),
    user_device_token character varying(255),
    user_phone_otp character varying(255),
    user_email_otp character varying(255),
    password_reset_code character varying(255),
    password_reset_time timestamp(0) without time zone,
    password_reset_otp character varying(255),
    is_social integer DEFAULT 0 NOT NULL,
    phone_verified integer DEFAULT 0 NOT NULL,
    user_access_token character varying(255),
    email_verified integer DEFAULT 0 NOT NULL,
    deleted integer DEFAULT 0 NOT NULL,
    nick_name character varying(255),
    nationality_id bigint,
    user_number character varying(255),
    parent_approval integer DEFAULT 1 NOT NULL,
    blur_image integer DEFAULT 0 NOT NULL,
    is_image_blur integer DEFAULT 0,
    hide_on_search boolean DEFAULT false NOT NULL,
    not_show_over_aged boolean DEFAULT false NOT NULL,
    firebase_user_key character varying(255),
    profile_setup_completed integer DEFAULT 0,
    parent_name character varying(255),
    parent_email character varying(255),
    preference_setup_completed integer DEFAULT 0 NOT NULL,
    who_can_contact integer
);


ALTER TABLE public.users OWNER TO postgres;

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

CREATE TABLE public.verification_requests (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    remarks text,
    status character varying(255) DEFAULT 'pending'::character varying NOT NULL,
    licence_file character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT verification_requests_status_check CHECK (((status)::text = ANY ((ARRAY['pending'::character varying, 'approved'::character varying, 'rejected'::character varying])::text[])))
);


ALTER TABLE public.verification_requests OWNER TO postgres;

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

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


ALTER TABLE public.verification_requests_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.verification_requests_id_seq OWNED BY public.verification_requests.id;


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

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


ALTER TABLE public.why_choose_us_id_seq OWNER TO postgres;

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

CREATE TABLE public.why_choose_us (
    id bigint DEFAULT nextval('public.why_choose_us_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    content text NOT NULL,
    image character varying(255),
    status boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.why_choose_us OWNER TO postgres;

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

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


ALTER TABLE public.work_process_id_seq OWNER TO postgres;

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

CREATE TABLE public.work_process (
    id bigint DEFAULT nextval('public.work_process_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    content text,
    image character varying(255),
    status boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.work_process OWNER TO postgres;

--
-- Name: activities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activities ALTER COLUMN id SET DEFAULT nextval('public.activities_id_seq'::regclass);


--
-- Name: ad_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_images ALTER COLUMN id SET DEFAULT nextval('public.ad_images_id_seq'::regclass);


--
-- Name: ad_report_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types ALTER COLUMN id SET DEFAULT nextval('public.ad_report_types_id_seq'::regclass);


--
-- Name: ad_reports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_reports ALTER COLUMN id SET DEFAULT nextval('public.ad_reports_id_seq'::regclass);


--
-- Name: ad_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_requests ALTER COLUMN id SET DEFAULT nextval('public.ad_requests_id_seq'::regclass);


--
-- Name: badges id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.badges ALTER COLUMN id SET DEFAULT nextval('public.badges_id_seq'::regclass);


--
-- Name: countries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries ALTER COLUMN id SET DEFAULT nextval('public.countries_id_seq'::regclass);


--
-- Name: dress_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dress_codes ALTER COLUMN id SET DEFAULT nextval('public.dress_codes_id_seq'::regclass);


--
-- Name: educations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.educations ALTER COLUMN id SET DEFAULT nextval('public.educations_id_seq'::regclass);


--
-- Name: emirates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emirates ALTER COLUMN id SET DEFAULT nextval('public.emirates_id_seq'::regclass);


--
-- Name: genetic_disease_variants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_disease_variants ALTER COLUMN id SET DEFAULT nextval('public.genetic_disease_variants_id_seq'::regclass);


--
-- Name: genetic_diseases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_diseases ALTER COLUMN id SET DEFAULT nextval('public.genetic_diseases_id_seq'::regclass);


--
-- Name: home_element_ads id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_element_ads ALTER COLUMN id SET DEFAULT nextval('public.home_element_ads_id_seq'::regclass);


--
-- Name: home_elements id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_elements ALTER COLUMN id SET DEFAULT nextval('public.home_elements_id_seq'::regclass);


--
-- Name: known_languages id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.known_languages ALTER COLUMN id SET DEFAULT nextval('public.known_languages_id_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_seq1'::regclass);


--
-- Name: looking_ads id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.looking_ads ALTER COLUMN id SET DEFAULT nextval('public.looking_ads_id_seq'::regclass);


--
-- Name: main_notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.main_notifications ALTER COLUMN id SET DEFAULT nextval('public.main_notifications_id_seq'::regclass);


--
-- Name: marital_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.marital_statuses ALTER COLUMN id SET DEFAULT nextval('public.marital_statuses_id_seq'::regclass);


--
-- Name: motor_makes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_makes ALTER COLUMN id SET DEFAULT nextval('public.motor_makes_id_seq'::regclass);


--
-- Name: motor_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_models ALTER COLUMN id SET DEFAULT nextval('public.motor_models_id_seq'::regclass);


--
-- Name: nationalities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.nationalities ALTER COLUMN id SET DEFAULT nextval('public.nationalities_id_seq'::regclass);


--
-- Name: notification_settings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_settings ALTER COLUMN id SET DEFAULT nextval('public.notification_settings_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: parent_approvals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_approvals ALTER COLUMN id SET DEFAULT nextval('public.parent_approvals_id_seq'::regclass);


--
-- Name: parent_categories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_categories ALTER COLUMN id SET DEFAULT nextval('public.parent_categories_id_seq'::regclass);


--
-- Name: payment_reports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_reports ALTER COLUMN id SET DEFAULT nextval('public.payment_reports_id_seq'::regclass);


--
-- Name: personal_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.personal_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.personal_access_tokens_id_seq'::regclass);


--
-- Name: plan_durations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.plan_durations ALTER COLUMN id SET DEFAULT nextval('public.plan_durations_id_seq1'::regclass);


--
-- Name: popular_ads id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.popular_ads ALTER COLUMN id SET DEFAULT nextval('public.popular_ads_id_seq'::regclass);


--
-- Name: pricing_plans id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pricing_plans ALTER COLUMN id SET DEFAULT nextval('public.pricing_plans_id_seq1'::regclass);


--
-- Name: professions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.professions ALTER COLUMN id SET DEFAULT nextval('public.professions_id_seq'::regclass);


--
-- Name: promo_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.promo_codes ALTER COLUMN id SET DEFAULT nextval('public.promo_codes_id_seq'::regclass);


--
-- Name: property_amenities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.property_amenities ALTER COLUMN id SET DEFAULT nextval('public.property_amenities_id_seq'::regclass);


--
-- Name: report_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types ALTER COLUMN id SET DEFAULT nextval('public.report_types_id_seq'::regclass);


--
-- Name: sects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sects ALTER COLUMN id SET DEFAULT nextval('public.sects_id_seq'::regclass);


--
-- Name: slider_items id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.slider_items ALTER COLUMN id SET DEFAULT nextval('public.slider_items_id_seq'::regclass);


--
-- Name: sliders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sliders ALTER COLUMN id SET DEFAULT nextval('public.sliders_id_seq1'::regclass);


--
-- Name: sports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sports ALTER COLUMN id SET DEFAULT nextval('public.sports_id_seq'::regclass);


--
-- Name: support_tickets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.support_tickets ALTER COLUMN id SET DEFAULT nextval('public.support_tickets_id_seq'::regclass);


--
-- Name: temp_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_orders ALTER COLUMN id SET DEFAULT nextval('public.temp_orders_id_seq'::regclass);


--
-- Name: temp_users id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users ALTER COLUMN id SET DEFAULT nextval('public.temp_users_id_seq'::regclass);


--
-- Name: user_activities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_activities ALTER COLUMN id SET DEFAULT nextval('public.user_activities_id_seq'::regclass);


--
-- Name: user_blocks id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_blocks ALTER COLUMN id SET DEFAULT nextval('public.user_blocks_id_seq'::regclass);


--
-- Name: user_children id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_children ALTER COLUMN id SET DEFAULT nextval('public.user_children_id_seq'::regclass);


--
-- Name: user_connection id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection ALTER COLUMN id SET DEFAULT nextval('public.user_connection_id_seq'::regclass);


--
-- Name: user_connections id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connections ALTER COLUMN id SET DEFAULT nextval('public.user_connections_id_seq'::regclass);


--
-- Name: user_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_details ALTER COLUMN id SET DEFAULT nextval('public.user_details_id_seq'::regclass);


--
-- Name: user_disease_variants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_disease_variants ALTER COLUMN id SET DEFAULT nextval('public.user_disease_variants_id_seq'::regclass);


--
-- Name: user_diseases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases ALTER COLUMN id SET DEFAULT nextval('public.user_diseases_id_seq'::regclass);


--
-- Name: user_dress_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_dress_codes ALTER COLUMN id SET DEFAULT nextval('public.user_dress_codes_id_seq'::regclass);


--
-- Name: user_educations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations ALTER COLUMN id SET DEFAULT nextval('public.user_educations_id_seq'::regclass);


--
-- Name: user_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_images ALTER COLUMN id SET DEFAULT nextval('public.user_images_id_seq'::regclass);


--
-- Name: user_marital_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_marital_statuses ALTER COLUMN id SET DEFAULT nextval('public.user_marital_statuses_id_seq'::regclass);


--
-- Name: user_matches id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_matches ALTER COLUMN id SET DEFAULT nextval('public.user_matches_id_seq'::regclass);


--
-- Name: user_plans id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_plans ALTER COLUMN id SET DEFAULT nextval('public.user_plans_id_seq'::regclass);


--
-- Name: user_preferences id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_preferences ALTER COLUMN id SET DEFAULT nextval('public.user_preferences_id_seq'::regclass);


--
-- Name: user_professions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions ALTER COLUMN id SET DEFAULT nextval('public.user_professions_id_seq'::regclass);


--
-- Name: user_reports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_reports ALTER COLUMN id SET DEFAULT nextval('public.user_reports_id_seq'::regclass);


--
-- Name: user_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_requests ALTER COLUMN id SET DEFAULT nextval('public.user_requests_id_seq'::regclass);


--
-- Name: user_sects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects ALTER COLUMN id SET DEFAULT nextval('public.user_sects_id_seq'::regclass);


--
-- Name: user_sports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sports ALTER COLUMN id SET DEFAULT nextval('public.user_sports_id_seq'::regclass);


--
-- Name: verification_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.verification_requests ALTER COLUMN id SET DEFAULT nextval('public.verification_requests_id_seq'::regclass);


--
-- Data for Name: activities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.activities (id, name, name_ar, status, deleted_at, created_at, updated_at, image) FROM stdin;
8	Cycling	ركوب الدراجة	1	2025-05-05 08:21:20	2025-05-03 10:12:34	2025-05-05 08:21:20	\N
2	Writing	الكتابة	1	2025-05-27 12:25:20	2025-05-03 10:10:36	2025-05-27 12:25:20	\N
7	Running	الخَبز	1	\N	2025-05-03 10:12:17	2025-06-06 11:21:58	6842cf5646b7b_1749208918.png
1	Reading	القراءة	1	\N	2025-05-03 10:10:17	2025-06-07 11:29:09	68442285c9fa6_1749295749.png
4	Dancing	الغناء	1	\N	2025-05-03 10:11:20	2025-06-07 11:30:09	684422c14e70c_1749295809.png
6	Cooking	الطبخ	1	\N	2025-05-03 10:11:56	2025-06-07 11:31:16	68442303e747f_1749295875.png
5	Cycling	الرقص	1	\N	2025-05-03 10:11:38	2025-06-07 11:31:57	6844232d902c1_1749295917.png
3	Watching Tv	التلوين	1	\N	2025-05-03 10:11:02	2025-06-07 11:33:23	68442382dfdbd_1749296002.png
9	Travelling	التصوير	1	\N	2025-05-03 10:12:51	2025-06-07 11:34:28	684423c41329d_1749296068.png
\.


--
-- Data for Name: ad_fields; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_fields (id, ad_id, field_id, field_label, value, field_label_ar, value_ar, created_at, updated_at, field_type, section) FROM stdin;
1	4	61	Ads Title	Car for sale	عنوان الإعلانات	سيارة للبيع	\N	\N	\N	basic
5	4	62	Moke & Model	13	الوضع والنموذج	13	\N	\N	\N	basic
6	4	63	Regional Specs	4	المواصفات الإقليمية	4	\N	\N	\N	basic
7	4	64	Year	5	سنة	5	\N	\N	\N	basic
8	4	65	Kilometers	20000	كيلومترات	20000	\N	\N	\N	basic
9	4	66	Body Type	7	نوع الجسم	7	\N	\N	\N	basic
10	4	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟	9	\N	\N	\N	basic
11	4	68	Price	6000	سعر	6000	\N	\N	\N	basic
12	4	69	Phone Number	0511234567	رقم التليفون	0511234567	\N	\N	\N	basic
13	4	70	images	uploads/images.jpeg,uploads/toyota-supra.webp	الصور	image.png	\N	\N	\N	basic
47	25	68	Price	3	سعر		2025-04-18 05:57:57	2025-04-18 05:57:57	numeric	basic
48	25	69	Phone Number	3	رقم التليفون		2025-04-18 05:57:57	2025-04-18 05:57:57	mobile	basic
49	25	57	Model	23	Model		2025-04-18 05:57:57	2025-04-18 05:57:57	model	basic
14	1	40	Property Type	14	Property Type	14	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
15	1	41	Housing Category	17	Housing Category	17	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
2	1	42	Is it furnished?	19	Is it furnished?	19	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
3	1	43	Facilities	23	Facilities	23	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
4	1	44	Area/Size in sqft	2500	Area/Size in sqft	2500	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
16	1	45	Listed By	1443	Listed By	1443	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
17	1	46	Rent is Paid	1449	Rent is Paid	1449	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
18	1	47	Price	5000	Price	5000	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
19	1	48	Phone Number	+9711231234567	Phone Number	+9711231234567	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
20	1	49	Images	uploads/pexels-binyaminmellish-106399.jpg,uploads/pexels-binyaminmellish-186077.jpg	Images	uploads/pexels-binyaminmellish-106399.jpg,uploads/pexels-binyaminmellish-186077.jpg	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
21	22	62	Make	3	الوضع والنموذج		2025-04-18 05:49:19	2025-04-18 05:49:19	model	basic
22	22	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
23	22	64	Year	3	سنة		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
24	22	65	Kilometers	3	كيلومترات		2025-04-18 05:49:19	2025-04-18 05:49:19	numeric	basic
25	22	66	Body Type	3	نوع الجسم		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
26	22	67	Is your car insured in Syria	3	هل سيارتك مؤمنة في سوريا؟		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
27	22	68	Price	3	سعر		2025-04-18 05:49:19	2025-04-18 05:49:19	numeric	basic
28	22	69	Phone Number	3	رقم التليفون		2025-04-18 05:49:19	2025-04-18 05:49:19	mobile	basic
29	22	57	Model	23	Model		2025-04-18 05:49:19	2025-04-18 05:49:19	model	basic
30	22	56	Description	3	وصف		2025-04-18 05:49:19	2025-04-18 05:49:19	textarea	basic
31	24	62	Make	3	الوضع والنموذج		2025-04-18 05:50:39	2025-04-18 05:50:39	model	basic
32	24	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
33	24	64	Year	3	سنة		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
34	24	65	Kilometers	3	كيلومترات		2025-04-18 05:50:39	2025-04-18 05:50:39	numeric	basic
35	24	66	Body Type	3	نوع الجسم		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
36	24	67	Is your car insured in Syria	3	هل سيارتك مؤمنة في سوريا؟		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
37	24	68	Price	3	سعر		2025-04-18 05:50:39	2025-04-18 05:50:39	numeric	basic
38	24	69	Phone Number	3	رقم التليفون		2025-04-18 05:50:39	2025-04-18 05:50:39	mobile	basic
39	24	57	Model	23	Model		2025-04-18 05:50:39	2025-04-18 05:50:39	model	basic
40	24	56	Description	3	وصف		2025-04-18 05:50:39	2025-04-18 05:50:39	textarea	basic
41	25	62	Make	3	الوضع والنموذج		2025-04-18 05:57:57	2025-04-18 05:57:57	model	basic
42	25	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
43	25	64	Year	3	سنة		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
44	25	65	Kilometers	3	كيلومترات		2025-04-18 05:57:57	2025-04-18 05:57:57	numeric	basic
45	25	66	Body Type	3	نوع الجسم		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
46	25	67	Is your car insured in Syria	3	هل سيارتك مؤمنة في سوريا؟		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
50	25	56	Description	3	وصف		2025-04-18 05:57:57	2025-04-18 05:57:57	textarea	basic
51	28	62	Make	1	الوضع والنموذج		2025-04-18 06:26:41	2025-04-18 06:26:41	model	basic
52	28	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
53	28	64	Year	5	سنة		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
54	28	65	Kilometers	1	كيلومترات		2025-04-18 06:26:41	2025-04-18 06:26:41	numeric	basic
55	28	66	Body Type	7	نوع الجسم		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
56	28	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
57	28	68	Price	1	سعر		2025-04-18 06:26:41	2025-04-18 06:26:41	numeric	basic
58	28	69	Phone Number	1	رقم التليفون		2025-04-18 06:26:41	2025-04-18 06:26:41	mobile	basic
59	28	57	Model	1	Model		2025-04-18 06:26:41	2025-04-18 06:26:41	model	basic
60	28	56	Description	hello	وصف		2025-04-18 06:26:41	2025-04-18 06:26:41	textarea	basic
61	31	62	Make	1	الوضع والنموذج		2025-04-18 07:39:51	2025-04-18 07:39:51	make	basic
62	31	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
63	31	64	Year	5	سنة		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
64	31	65	Kilometers	50000	كيلومترات		2025-04-18 07:39:51	2025-04-18 07:39:51	numeric	basic
65	31	66	Body Type	5	نوع الجسم		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
66	31	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
67	31	68	Price	5000	سعر		2025-04-18 07:39:51	2025-04-18 07:39:51	numeric	basic
68	31	69	Phone Number	+92 300000000	رقم التليفون		2025-04-18 07:39:51	2025-04-18 07:39:51	mobile	basic
69	31	57	Model	1	Model		2025-04-18 07:39:51	2025-04-18 07:39:51	model	basic
70	34	62	Make	1	الوضع والنموذج		2025-04-18 07:45:57	2025-04-18 07:45:57	make	basic
71	34	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
72	34	64	Year	5	سنة		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
73	34	65	Kilometers	2500	كيلومترات		2025-04-18 07:45:57	2025-04-18 07:45:57	numeric	basic
74	34	66	Body Type	7	نوع الجسم		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
75	34	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
76	34	68	Price	300	سعر		2025-04-18 07:45:57	2025-04-18 07:45:57	numeric	basic
77	34	57	Model	1	Model		2025-04-18 07:45:57	2025-04-18 07:45:57	model	basic
78	35	62	Make	1	الوضع والنموذج		2025-04-18 10:18:48	2025-04-18 10:18:48	make	basic
79	35	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
80	35	64	Year	5	سنة		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
81	35	65	Kilometers	10000	كيلومترات		2025-04-18 10:18:48	2025-04-18 10:18:48	numeric	basic
82	35	66	Body Type	7	نوع الجسم		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
83	35	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
84	35	68	Price	500	سعر		2025-04-18 10:18:48	2025-04-18 10:18:48	numeric	basic
85	35	57	Model	1	Model		2025-04-18 10:18:48	2025-04-18 10:18:48	model	basic
86	36	62	Make	1	الوضع والنموذج		2025-04-18 10:28:39	2025-04-18 10:28:39	make	basic
87	36	63	Regional Specs	4	المواصفات الإقليمية		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
88	36	64	Year	5	سنة		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
89	36	65	Kilometers	500	كيلومترات		2025-04-18 10:28:39	2025-04-18 10:28:39	numeric	basic
90	36	66	Body Type	8	نوع الجسم		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
91	36	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
92	36	68	Price	500	سعر		2025-04-18 10:28:39	2025-04-18 10:28:39	numeric	basic
93	36	57	Model	1	Model		2025-04-18 10:28:39	2025-04-18 10:28:39	model	basic
94	37	62	Make	1	الوضع والنموذج		2025-04-18 10:29:39	2025-04-18 10:29:39	make	basic
95	37	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
96	37	64	Year	5	سنة		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
97	37	65	Kilometers	500	كيلومترات		2025-04-18 10:29:39	2025-04-18 10:29:39	numeric	basic
98	37	66	Body Type	7	نوع الجسم		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
99	37	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
100	37	68	Price	500	سعر		2025-04-18 10:29:39	2025-04-18 10:29:39	numeric	basic
101	37	57	Model	1	Model		2025-04-18 10:29:39	2025-04-18 10:29:39	model	basic
102	38	62	Make	1	الوضع والنموذج		2025-04-18 10:42:38	2025-04-18 10:42:38	make	basic
103	38	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
104	38	64	Year	5	سنة		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
105	38	65	Kilometers	1000	كيلومترات		2025-04-18 10:42:38	2025-04-18 10:42:38	numeric	basic
106	38	66	Body Type	7	نوع الجسم		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
107	38	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
108	38	68	Price	500	سعر		2025-04-18 10:42:38	2025-04-18 10:42:38	numeric	basic
109	38	57	Model	1	Model		2025-04-18 10:42:38	2025-04-18 10:42:38	model	basic
110	40	62	Make	4	الوضع والنموذج		2025-04-18 11:04:37	2025-04-18 11:04:37	make	basic
111	40	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
112	40	64	Year	5	سنة		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
113	40	65	Kilometers	464646	كيلومترات		2025-04-18 11:04:37	2025-04-18 11:04:37	numeric	basic
114	40	66	Body Type	7	نوع الجسم		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
115	40	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
116	40	68	Price	500	سعر		2025-04-18 11:04:37	2025-04-18 11:04:37	numeric	basic
117	40	57	Model	2	Model		2025-04-18 11:04:37	2025-04-18 11:04:37	model	basic
118	42	62	Make	1	الوضع والنموذج		2025-04-18 11:32:26	2025-04-18 11:32:26	make	basic
119	42	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
120	42	64	Year	5	سنة		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
121	42	65	Kilometers	25	كيلومترات		2025-04-18 11:32:26	2025-04-18 11:32:26	numeric	basic
122	42	66	Body Type	7	نوع الجسم		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
123	42	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
124	42	68	Price	25	سعر		2025-04-18 11:32:26	2025-04-18 11:32:26	numeric	basic
125	42	69	Phone Number	+963 3441562554	رقم التليفون		2025-04-18 11:32:26	2025-04-18 11:32:26	mobile	basic
126	42	57	Model	1	Model		2025-04-18 11:32:26	2025-04-18 11:32:26	model	basic
127	40	70	images		الصور		2025-04-18 11:33:28	2025-04-18 11:33:28	files	advance
128	40	56	Description	Hello	وصف		2025-04-18 11:33:28	2025-04-18 11:33:28	textarea	advance
129	40	50	Fuel Type	11	نوع الوقود		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
130	40	51	Exterior Color	Black	اللون الخارجي		2025-04-18 11:33:28	2025-04-18 11:33:28	text	advance
131	40	52	Interior Color	1452	اللون الداخلي		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
132	40	53	Warranty	1454	الضمان		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
133	40	54	Body Condition	1456	حالة الجسم		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
134	40	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
135	47	62	Make	1	الوضع والنموذج		2025-04-18 20:04:22	2025-04-18 20:04:22	make	basic
136	47	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
137	47	64	Year	5	سنة		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
138	47	65	Kilometers	5000	كيلومترات		2025-04-18 20:04:22	2025-04-18 20:04:22	numeric	basic
139	47	66	Body Type	7	نوع الجسم		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
140	47	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
141	47	68	Price	5000	سعر		2025-04-18 20:04:22	2025-04-18 20:04:22	numeric	basic
142	47	57	Model	1	Model		2025-04-18 20:04:22	2025-04-18 20:04:22	model	basic
143	47	70	images		الصور		2025-04-18 20:05:33	2025-04-18 20:05:33	files	advance
144	47	56	Description	hello	وصف		2025-04-18 20:05:33	2025-04-18 20:05:33	textarea	advance
145	47	50	Fuel Type	11	نوع الوقود		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
146	47	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-18 20:05:33	2025-04-18 20:05:33	text	advance
147	47	52	Interior Color	1452	اللون الداخلي		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
148	47	53	Warranty	1454	الضمان		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
149	47	54	Body Condition	1456	حالة الجسم		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
150	47	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
151	51	62	Make	1	الوضع والنموذج		2025-04-19 05:05:20	2025-04-19 05:05:20	make	basic
152	51	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 05:05:20	2025-04-19 05:05:20	select	basic
153	51	64	Year	5	سنة		2025-04-19 05:05:21	2025-04-19 05:05:21	select	basic
154	51	65	Kilometers	500	كيلومترات		2025-04-19 05:05:21	2025-04-19 05:05:21	numeric	basic
155	51	66	Body Type	7	نوع الجسم		2025-04-19 05:05:21	2025-04-19 05:05:21	select	basic
156	51	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 05:05:21	2025-04-19 05:05:21	select	basic
157	51	68	Price	600	سعر		2025-04-19 05:05:21	2025-04-19 05:05:21	numeric	basic
158	51	57	Model	1	Model		2025-04-19 05:05:21	2025-04-19 05:05:21	model	basic
159	51	70	images		الصور		2025-04-19 05:06:06	2025-04-19 05:06:06	files	advance
160	51	56	Description	hello	وصف		2025-04-19 05:06:06	2025-04-19 05:06:06	textarea	advance
161	51	50	Fuel Type	11	نوع الوقود		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
162	51	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 05:06:06	2025-04-19 05:06:06	text	advance
163	51	52	Interior Color	1452	اللون الداخلي		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
164	51	53	Warranty	1454	الضمان		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
165	51	54	Body Condition	1456	حالة الجسم		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
166	51	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
167	55	62	Make	1	الوضع والنموذج		2025-04-19 05:16:16	2025-04-19 05:16:16	make	basic
168	55	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
169	55	64	Year	5	سنة		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
170	55	65	Kilometers	6677	كيلومترات		2025-04-19 05:16:16	2025-04-19 05:16:16	numeric	basic
171	55	66	Body Type	7	نوع الجسم		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
172	55	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
173	55	68	Price	600	سعر		2025-04-19 05:16:16	2025-04-19 05:16:16	numeric	basic
174	55	57	Model	1	Model		2025-04-19 05:16:16	2025-04-19 05:16:16	model	basic
175	55	70	images		الصور		2025-04-19 05:17:00	2025-04-19 05:17:00	files	advance
176	55	56	Description	description	وصف		2025-04-19 05:17:00	2025-04-19 05:17:00	textarea	advance
177	55	50	Fuel Type	11	نوع الوقود		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
178	55	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 05:17:00	2025-04-19 05:17:00	text	advance
179	55	52	Interior Color	1452	اللون الداخلي		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
180	55	53	Warranty	1454	الضمان		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
181	55	54	Body Condition	1456	حالة الجسم		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
182	55	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
183	59	62	Make	1	الوضع والنموذج		2025-04-19 09:14:46	2025-04-19 09:14:46	make	basic
184	59	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
185	59	64	Year	5	سنة		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
186	59	65	Kilometers	2500	كيلومترات		2025-04-19 09:14:46	2025-04-19 09:14:46	numeric	basic
187	59	66	Body Type	7	نوع الجسم		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
188	59	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
189	59	68	Price	500	سعر		2025-04-19 09:14:46	2025-04-19 09:14:46	numeric	basic
190	59	57	Model	1	Model		2025-04-19 09:14:46	2025-04-19 09:14:46	model	basic
191	59	70	images		الصور		2025-04-19 09:15:22	2025-04-19 09:15:22	files	advance
192	59	56	Description	hello	وصف		2025-04-19 09:15:22	2025-04-19 09:15:22	textarea	advance
193	59	50	Fuel Type	11	نوع الوقود		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
194	59	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 09:15:22	2025-04-19 09:15:22	text	advance
195	59	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
196	59	53	Warranty	1454	الضمان		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
197	59	54	Body Condition	1456	حالة الجسم		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
198	59	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
199	65	62	Make	1	الوضع والنموذج		2025-04-19 09:30:35	2025-04-19 09:30:35	make	basic
200	65	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
201	65	64	Year	5	سنة		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
202	65	65	Kilometers	500	كيلومترات		2025-04-19 09:30:35	2025-04-19 09:30:35	numeric	basic
203	65	66	Body Type	7	نوع الجسم		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
204	65	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
205	65	68	Price	500	سعر		2025-04-19 09:30:35	2025-04-19 09:30:35	numeric	basic
206	65	57	Model	1	Model		2025-04-19 09:30:35	2025-04-19 09:30:35	model	basic
207	65	70	images		الصور		2025-04-19 09:31:26	2025-04-19 09:31:26	files	advance
208	65	56	Description	hello	وصف		2025-04-19 09:31:26	2025-04-19 09:31:26	textarea	advance
209	65	50	Fuel Type	11	نوع الوقود		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
210	65	51	Exterior Color	Black	اللون الخارجي		2025-04-19 09:31:26	2025-04-19 09:31:26	text	advance
211	65	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
212	65	53	Warranty	1454	الضمان		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
213	65	54	Body Condition	1456	حالة الجسم		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
214	65	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
215	66	62	Make	4	الوضع والنموذج		2025-04-19 09:41:40	2025-04-19 09:41:40	make	basic
216	66	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
217	66	64	Year	5	سنة		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
218	66	65	Kilometers	20000	كيلومترات		2025-04-19 09:41:40	2025-04-19 09:41:40	numeric	basic
219	66	66	Body Type	7	نوع الجسم		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
220	66	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
221	66	68	Price	20000	سعر		2025-04-19 09:41:40	2025-04-19 09:41:40	numeric	basic
222	66	69	Phone Number	+963 453464049	رقم التليفون		2025-04-19 09:41:40	2025-04-19 09:41:40	mobile	basic
223	66	57	Model	2	Model		2025-04-19 09:41:40	2025-04-19 09:41:40	model	basic
224	68	62	Make	1	الوضع والنموذج		2025-04-19 09:43:05	2025-04-19 09:43:05	make	basic
225	68	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
226	68	64	Year	5	سنة		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
227	68	65	Kilometers	500	كيلومترات		2025-04-19 09:43:05	2025-04-19 09:43:05	numeric	basic
228	68	66	Body Type	7	نوع الجسم		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
229	68	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
230	68	68	Price	800	سعر		2025-04-19 09:43:05	2025-04-19 09:43:05	numeric	basic
231	68	57	Model	1	Model		2025-04-19 09:43:05	2025-04-19 09:43:05	model	basic
232	68	70	images		الصور		2025-04-19 09:43:46	2025-04-19 09:43:46	files	advance
233	68	56	Description	hello	وصف		2025-04-19 09:43:46	2025-04-19 09:43:46	textarea	advance
234	68	50	Fuel Type	11	نوع الوقود		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
235	68	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 09:43:46	2025-04-19 09:43:46	text	advance
236	68	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
237	68	53	Warranty	1454	الضمان		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
238	68	54	Body Condition	1456	حالة الجسم		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
239	68	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
240	70	62	Make	1	الوضع والنموذج		2025-04-19 09:56:36	2025-04-19 09:56:36	make	basic
241	70	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
242	70	64	Year	5	سنة		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
243	70	65	Kilometers	6000	كيلومترات		2025-04-19 09:56:36	2025-04-19 09:56:36	numeric	basic
244	70	66	Body Type	7	نوع الجسم		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
245	70	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
246	70	68	Price	900	سعر		2025-04-19 09:56:36	2025-04-19 09:56:36	numeric	basic
247	70	57	Model	1	Model		2025-04-19 09:56:36	2025-04-19 09:56:36	model	basic
248	70	70	images		الصور		2025-04-19 09:57:15	2025-04-19 09:57:15	files	advance
249	70	56	Description	hello	وصف		2025-04-19 09:57:15	2025-04-19 09:57:15	textarea	advance
250	70	50	Fuel Type	11	نوع الوقود		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
251	70	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 09:57:15	2025-04-19 09:57:15	text	advance
252	70	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
253	70	53	Warranty	1454	الضمان		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
254	70	54	Body Condition	1456	حالة الجسم		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
255	70	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
256	80	39	Location		Location		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
257	80	40	Property Type		Property Type		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
258	80	41	Housing Category		Housing Category		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
259	80	42	Is it furnished?		?Is it furnished		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
260	80	43	Facilities		Facilities		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
261	80	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
262	80	45	Listed By		Listed By		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
263	80	46	Rent is Paid		Rent is Paid		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
264	80	47	Price		Price		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
265	80	48	Phone Number		Phone Number		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
266	81	39	Location		Location		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
267	81	40	Property Type		Property Type		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
268	81	41	Housing Category		Housing Category		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
269	81	42	Is it furnished?		?Is it furnished		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
270	81	43	Facilities		Facilities		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
271	81	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
272	81	45	Listed By		Listed By		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
273	81	46	Rent is Paid		Rent is Paid		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
274	81	47	Price		Price		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
275	81	48	Phone Number		Phone Number		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
276	82	62	Make	1	الوضع والنموذج		2025-04-19 13:06:02	2025-04-19 13:06:02	make	basic
277	82	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
278	82	64	Year	5	سنة		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
279	82	65	Kilometers	25	كيلومترات		2025-04-19 13:06:02	2025-04-19 13:06:02	numeric	basic
280	82	66	Body Type	7	نوع الجسم		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
281	82	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
282	82	68	Price	25	سعر		2025-04-19 13:06:02	2025-04-19 13:06:02	numeric	basic
283	82	57	Model	1	Model		2025-04-19 13:06:02	2025-04-19 13:06:02	model	basic
284	82	70	images		الصور		2025-04-19 13:06:30	2025-04-19 13:06:30	files	advance
285	82	56	Description	nxnx	وصف		2025-04-19 13:06:30	2025-04-19 13:06:30	textarea	advance
286	82	50	Fuel Type	11	نوع الوقود		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
287	82	51	Exterior Color	Bxnx	اللون الخارجي		2025-04-19 13:06:30	2025-04-19 13:06:30	text	advance
288	82	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
289	82	53	Warranty	1454	الضمان		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
290	82	54	Body Condition	1456	حالة الجسم		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
291	82	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
292	85	39	Location		Location		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
293	85	40	Property Type		Property Type		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
294	85	41	Housing Category		Housing Category		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
295	85	42	Is it furnished?		?Is it furnished		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
296	85	43	Facilities		Facilities		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
297	85	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
298	85	45	Listed By		Listed By		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
299	85	46	Rent is Paid		Rent is Paid		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
300	85	47	Price		Price		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
301	85	48	Phone Number		Phone Number		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
302	85	49	Images		Images		2025-04-19 13:17:30	2025-04-19 13:17:30	file	basic
303	86	62	Make	1	الوضع والنموذج		2025-04-19 13:19:12	2025-04-19 13:19:12	make	basic
304	86	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
305	86	64	Year	5	سنة		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
306	86	65	Kilometers	25	كيلومترات		2025-04-19 13:19:12	2025-04-19 13:19:12	numeric	basic
307	86	66	Body Type	7	نوع الجسم		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
308	86	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
309	86	68	Price	52	سعر		2025-04-19 13:19:12	2025-04-19 13:19:12	numeric	basic
310	86	57	Model	1	Model		2025-04-19 13:19:12	2025-04-19 13:19:12	model	basic
311	86	70	images		الصور		2025-04-19 13:19:46	2025-04-19 13:19:46	files	advance
312	86	56	Description	hello	وصف		2025-04-19 13:19:46	2025-04-19 13:19:46	textarea	advance
313	86	50	Fuel Type	11	نوع الوقود		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
314	86	51	Exterior Color	Black	اللون الخارجي		2025-04-19 13:19:46	2025-04-19 13:19:46	text	advance
315	86	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
316	86	53	Warranty	1454	الضمان		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
317	86	54	Body Condition	1456	حالة الجسم		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
318	86	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
319	87	62	Make	1	الوضع والنموذج		2025-04-19 13:23:56	2025-04-19 13:23:56	make	basic
320	87	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
321	87	64	Year	5	سنة		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
322	87	65	Kilometers	255	كيلومترات		2025-04-19 13:23:56	2025-04-19 13:23:56	numeric	basic
323	87	66	Body Type	7	نوع الجسم		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
324	87	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
325	87	68	Price	25	سعر		2025-04-19 13:23:56	2025-04-19 13:23:56	numeric	basic
326	87	57	Model	65	Model		2025-04-19 13:23:56	2025-04-19 13:23:56	model	basic
327	87	70	images		الصور		2025-04-19 13:24:28	2025-04-19 13:24:28	files	advance
328	87	56	Description	desc	وصف		2025-04-19 13:24:28	2025-04-19 13:24:28	textarea	advance
329	87	50	Fuel Type	11	نوع الوقود		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
330	87	51	Exterior Color	Ggg	اللون الخارجي		2025-04-19 13:24:28	2025-04-19 13:24:28	text	advance
331	87	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
332	87	53	Warranty	1454	الضمان		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
333	87	54	Body Condition	1456	حالة الجسم		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
334	87	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
335	88	62	Make	1	الوضع والنموذج		2025-04-19 13:43:56	2025-04-19 13:43:56	make	basic
336	88	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
337	88	64	Year	5	سنة		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
338	88	65	Kilometers	2500	كيلومترات		2025-04-19 13:43:56	2025-04-19 13:43:56	numeric	basic
339	88	66	Body Type	7	نوع الجسم		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
340	88	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
341	88	68	Price	3600	سعر		2025-04-19 13:43:56	2025-04-19 13:43:56	numeric	basic
342	88	57	Model	1	Model		2025-04-19 13:43:56	2025-04-19 13:43:56	model	basic
343	88	70	images		الصور		2025-04-19 13:44:42	2025-04-19 13:44:42	files	advance
344	88	56	Description	hdjs	وصف		2025-04-19 13:44:42	2025-04-19 13:44:42	textarea	advance
345	88	50	Fuel Type	11	نوع الوقود		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
346	88	51	Exterior Color	Black	اللون الخارجي		2025-04-19 13:44:42	2025-04-19 13:44:42	text	advance
347	88	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
348	88	53	Warranty	1454	الضمان		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
349	88	54	Body Condition	1456	حالة الجسم		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
350	88	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
351	89	62	Make	1	الوضع والنموذج		2025-04-19 16:44:11	2025-04-19 16:44:11	make	basic
352	89	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
353	89	64	Year	5	سنة		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
354	89	65	Kilometers	52	كيلومترات		2025-04-19 16:44:11	2025-04-19 16:44:11	numeric	basic
355	89	66	Body Type	7	نوع الجسم		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
356	89	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
357	89	68	Price	556	سعر		2025-04-19 16:44:11	2025-04-19 16:44:11	numeric	basic
358	89	57	Model	1	Model		2025-04-19 16:44:11	2025-04-19 16:44:11	model	basic
359	89	70	images		الصور		2025-04-19 16:48:06	2025-04-19 16:48:06	files	advance
360	89	56	Description	heel	وصف		2025-04-19 16:48:06	2025-04-19 16:48:06	textarea	advance
361	89	50	Fuel Type	11	نوع الوقود		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
362	89	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 16:48:06	2025-04-19 16:48:06	text	advance
363	89	52	Interior Color	1452	اللون الداخلي		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
364	89	53	Warranty	1454	الضمان		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
365	89	54	Body Condition	1456	حالة الجسم		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
366	89	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
367	90	62	Make	1	الوضع والنموذج		2025-04-19 16:56:51	2025-04-19 16:56:51	make	basic
368	90	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 16:56:51	2025-04-19 16:56:51	select	basic
369	90	64	Year	5	سنة		2025-04-19 16:56:51	2025-04-19 16:56:51	select	basic
370	90	65	Kilometers	6000	كيلومترات		2025-04-19 16:56:52	2025-04-19 16:56:52	numeric	basic
371	90	66	Body Type	7	نوع الجسم		2025-04-19 16:56:52	2025-04-19 16:56:52	select	basic
372	90	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 16:56:52	2025-04-19 16:56:52	select	basic
373	90	68	Price	69696	سعر		2025-04-19 16:56:52	2025-04-19 16:56:52	numeric	basic
374	90	57	Model	1	Model		2025-04-19 16:56:52	2025-04-19 16:56:52	model	basic
375	90	70	images		الصور		2025-04-19 16:57:40	2025-04-19 16:57:40	files	advance
376	90	56	Description	hellp this is description	وصف		2025-04-19 16:57:40	2025-04-19 16:57:40	textarea	advance
377	90	50	Fuel Type	11	نوع الوقود		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
378	90	51	Exterior Color	Black	اللون الخارجي		2025-04-19 16:57:40	2025-04-19 16:57:40	text	advance
379	90	52	Interior Color	1452	اللون الداخلي		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
380	90	53	Warranty	1455	الضمان		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
381	90	54	Body Condition	1456	حالة الجسم		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
382	90	55	Mechanical Condition	1459	الحالة الميكانيكية		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
383	93	62	Make	1	الوضع والنموذج		2025-04-19 17:03:27	2025-04-19 17:03:27	make	basic
384	93	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
385	93	64	Year	5	سنة		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
386	93	65	Kilometers	6000	كيلومترات		2025-04-19 17:03:27	2025-04-19 17:03:27	numeric	basic
387	93	66	Body Type	7	نوع الجسم		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
388	93	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
389	93	68	Price	300	سعر		2025-04-19 17:03:27	2025-04-19 17:03:27	numeric	basic
390	93	57	Model	1	Model		2025-04-19 17:03:27	2025-04-19 17:03:27	model	basic
391	93	70	images		الصور		2025-04-19 17:05:39	2025-04-19 17:05:39	files	advance
392	93	56	Description	hamud	وصف		2025-04-19 17:05:39	2025-04-19 17:05:39	textarea	advance
393	93	50	Fuel Type	11	نوع الوقود		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
394	93	51	Exterior Color	White	اللون الخارجي		2025-04-19 17:05:39	2025-04-19 17:05:39	text	advance
395	93	52	Interior Color	1452	اللون الداخلي		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
396	93	53	Warranty	1454	الضمان		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
397	93	54	Body Condition	1456	حالة الجسم		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
398	93	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
399	94	39	Location		Location		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
400	94	40	Property Type		Property Type		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
401	94	41	Housing Category		Housing Category		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
402	94	42	Is it furnished?		?Is it furnished		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
403	94	43	Facilities		Facilities		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
404	94	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
405	94	45	Listed By		Listed By		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
406	94	46	Rent is Paid		Rent is Paid		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
407	94	47	Price		Price		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
408	94	48	Phone Number		Phone Number		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
409	95	39	Location		Location		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
410	95	40	Property Type		Property Type		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
411	95	41	Housing Category		Housing Category		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
412	95	42	Is it furnished?		?Is it furnished		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
413	95	43	Facilities		Facilities		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
414	95	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
415	95	45	Listed By		Listed By		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
416	95	46	Rent is Paid		Rent is Paid		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
417	95	47	Price		Price		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
418	95	48	Phone Number		Phone Number		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
419	98	58	Ad Title	Hello	عنوان الإعلان		2025-04-19 17:26:59	2025-04-19 17:26:59	text	basic
420	99	58	Ad Title	Raza	عنوان الإعلان		2025-04-19 17:28:08	2025-04-19 17:28:08	text	basic
421	121	62	Make	1	الوضع والنموذج		2025-04-19 17:43:45	2025-04-19 17:43:45	make	basic
422	121	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
423	121	64	Year	5	سنة		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
424	121	65	Kilometers	68580000	كيلومترات		2025-04-19 17:43:45	2025-04-19 17:43:45	numeric	basic
425	121	66	Body Type	7	نوع الجسم		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
426	121	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
427	121	68	Price	5896	سعر		2025-04-19 17:43:45	2025-04-19 17:43:45	numeric	basic
428	121	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-19 17:43:45	2025-04-19 17:43:45	mobile	basic
429	121	57	Model	71	Model		2025-04-19 17:43:45	2025-04-19 17:43:45	model	basic
430	121	70	images		الصور		2025-04-19 17:44:51	2025-04-19 17:44:51	files	advance
431	121	56	Description	hello this is description	وصف		2025-04-19 17:44:51	2025-04-19 17:44:51	textarea	advance
432	121	50	Fuel Type	11	نوع الوقود		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
433	121	51	Exterior Color	This is black	اللون الخارجي		2025-04-19 17:44:51	2025-04-19 17:44:51	text	advance
434	121	52	Interior Color	1452	اللون الداخلي		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
435	121	53	Warranty	1454	الضمان		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
436	121	54	Body Condition	1456	حالة الجسم		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
437	121	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
438	122	62	Make	1	الوضع والنموذج		2025-04-19 18:08:23	2025-04-19 18:08:23	make	basic
439	122	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
440	122	64	Year	5	سنة		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
441	122	65	Kilometers	6900	كيلومترات		2025-04-19 18:08:23	2025-04-19 18:08:23	numeric	basic
442	122	66	Body Type	7	نوع الجسم		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
443	122	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
444	122	68	Price	69900	سعر		2025-04-19 18:08:23	2025-04-19 18:08:23	numeric	basic
445	122	57	Model	1	Model		2025-04-19 18:08:23	2025-04-19 18:08:23	model	basic
446	122	70	images		الصور		2025-04-19 18:08:57	2025-04-19 18:08:57	files	advance
447	122	56	Description	lsksks	وصف		2025-04-19 18:08:57	2025-04-19 18:08:57	textarea	advance
448	122	50	Fuel Type	11	نوع الوقود		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
449	122	51	Exterior Color	Black	اللون الخارجي		2025-04-19 18:08:57	2025-04-19 18:08:57	text	advance
450	122	52	Interior Color	1452	اللون الداخلي		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
451	122	53	Warranty	1454	الضمان		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
452	122	54	Body Condition	1456	حالة الجسم		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
453	122	55	Mechanical Condition	1459	الحالة الميكانيكية		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
454	125	39	Location		Location		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
455	125	40	Property Type		Property Type		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
456	125	41	Housing Category		Housing Category		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
457	125	42	Is it furnished?		?Is it furnished		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
458	125	43	Facilities		Facilities		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
459	125	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
460	125	45	Listed By		Listed By		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
461	125	46	Rent is Paid		Rent is Paid		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
462	125	47	Price		Price		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
463	125	48	Phone Number		Phone Number		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
464	128	39	Location		Location		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
465	128	40	Property Type		Property Type		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
466	128	41	Housing Category		Housing Category		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
467	128	42	Is it furnished?		?Is it furnished		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
468	128	43	Facilities		Facilities		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
469	128	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
470	128	45	Listed By		Listed By		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
471	128	46	Rent is Paid		Rent is Paid		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
472	128	47	Price		Price		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
473	128	48	Phone Number		Phone Number		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
474	129	39	Location		Location		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
475	129	40	Property Type		Property Type		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
476	129	41	Housing Category		Housing Category		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
477	129	42	Is it furnished?		?Is it furnished		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
478	129	43	Facilities		Facilities		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
479	129	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
480	129	45	Listed By		Listed By		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
481	129	46	Rent is Paid		Rent is Paid		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
482	129	47	Price		Price		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
483	129	48	Phone Number		Phone Number		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
484	130	39	Location		Location		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
485	130	40	Property Type		Property Type		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
486	130	41	Housing Category		Housing Category		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
487	130	42	Is it furnished?		?Is it furnished		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
488	130	43	Facilities		Facilities		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
489	130	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
490	130	45	Listed By		Listed By		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
491	130	46	Rent is Paid		Rent is Paid		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
492	130	47	Price		Price		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
493	130	48	Phone Number		Phone Number		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
494	131	39	Location		Location		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
495	131	40	Property Type		Property Type		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
496	131	41	Housing Category		Housing Category		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
497	131	42	Is it furnished?		?Is it furnished		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
498	131	43	Facilities		Facilities		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
499	131	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
500	131	45	Listed By		Listed By		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
501	131	46	Rent is Paid		Rent is Paid		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
502	131	47	Price		Price		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
503	131	48	Phone Number		Phone Number		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
504	132	58	Ad Title	Hamid	عنوان الإعلان		2025-04-19 18:50:15	2025-04-19 18:50:15	text	basic
505	132	59	Select Category	1465	حدد الفئة		2025-04-19 18:50:15	2025-04-19 18:50:15	select	basic
506	132	60	Select Property Type	1464	اختر نوع العقار		2025-04-19 18:50:15	2025-04-19 18:50:15	select	basic
507	134	58	Ad Title	Shsj	عنوان الإعلان		2025-04-19 18:56:18	2025-04-19 18:56:18	text	basic
508	134	59	Select Category	1465	حدد الفئة		2025-04-19 18:56:18	2025-04-19 18:56:18	select	basic
509	134	60	Select Property Type	1464	اختر نوع العقار		2025-04-19 18:56:18	2025-04-19 18:56:18	select	basic
510	135	58	Ad Title	Bdbnd	عنوان الإعلان		2025-04-20 17:00:05	2025-04-20 17:00:05	text	basic
511	135	59	Select Category	1465	حدد الفئة		2025-04-20 17:00:05	2025-04-20 17:00:05	select	basic
512	135	60	Select Property Type	1464	اختر نوع العقار		2025-04-20 17:00:05	2025-04-20 17:00:05	select	basic
513	136	70	images		الصور		2025-04-21 09:06:20	2025-04-21 09:06:20	files	advance
514	136	56	Description	Hello	وصف		2025-04-21 09:06:20	2025-04-21 09:06:20	textarea	advance
515	136	50	Fuel Type	11	نوع الوقود		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
516	136	51	Exterior Color	Black	اللون الخارجي		2025-04-21 09:06:20	2025-04-21 09:06:20	text	advance
517	136	52	Interior Color	1452	اللون الداخلي		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
518	136	53	Warranty	1454	الضمان		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
519	136	54	Body Condition	1456	حالة الجسم		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
520	136	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
521	142	62	Make	1	الوضع والنموذج		2025-04-21 09:25:57	2025-04-21 09:25:57	make	basic
522	142	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
523	142	64	Year	6	سنة		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
524	142	65	Kilometers	600	كيلومترات		2025-04-21 09:25:57	2025-04-21 09:25:57	numeric	basic
525	142	66	Body Type	7	نوع الجسم		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
526	142	67	Is your car insured in Syria	10	هل سيارتك مؤمنة في سوريا؟		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
527	142	68	Price	68548	سعر		2025-04-21 09:25:57	2025-04-21 09:25:57	numeric	basic
528	142	57	Model	1	Model		2025-04-21 09:25:57	2025-04-21 09:25:57	model	basic
529	142	70	images		الصور		2025-04-21 09:26:34	2025-04-21 09:26:34	files	advance
530	142	56	Description	hi	وصف		2025-04-21 09:26:34	2025-04-21 09:26:34	textarea	advance
531	142	50	Fuel Type	11	نوع الوقود		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
532	142	51	Exterior Color	Blqck	اللون الخارجي		2025-04-21 09:26:34	2025-04-21 09:26:34	text	advance
533	142	52	Interior Color	1452	اللون الداخلي		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
534	142	53	Warranty	1454	الضمان		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
535	142	54	Body Condition	1456	حالة الجسم		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
536	142	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
537	150	59	Select Category	1467	حدد الفئة		2025-04-21 09:40:39	2025-04-21 09:40:39	select	basic
538	150	60	Select Property Type	1468	اختر نوع العقار		2025-04-21 09:40:39	2025-04-21 09:40:39	select	basic
539	165	62	Make	1	الوضع والنموذج		2025-04-21 11:26:53	2025-04-21 11:26:53	make	basic
540	165	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
541	165	64	Year	5	سنة		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
542	165	65	Kilometers	6000	كيلومترات		2025-04-21 11:26:53	2025-04-21 11:26:53	numeric	basic
543	165	66	Body Type	7	نوع الجسم		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
544	165	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
545	165	68	Price	6352	سعر		2025-04-21 11:26:53	2025-04-21 11:26:53	numeric	basic
546	165	57	Model	1	Model		2025-04-21 11:26:53	2025-04-21 11:26:53	model	basic
547	165	70	images		الصور		2025-04-21 11:27:33	2025-04-21 11:27:33	files	advance
548	165	56	Description	hello	وصف		2025-04-21 11:27:33	2025-04-21 11:27:33	textarea	advance
549	165	50	Fuel Type	11	نوع الوقود		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
550	165	51	Exterior Color	Blue	اللون الخارجي		2025-04-21 11:27:33	2025-04-21 11:27:33	text	advance
551	165	52	Interior Color	1452	اللون الداخلي		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
552	165	53	Warranty	1454	الضمان		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
553	165	54	Body Condition	1456	حالة الجسم		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
554	165	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
555	169	78	Multi option field	option3	حقل متعدد الخيارات		2025-04-21 12:04:59	2025-04-21 12:04:59	checkbox	basic
556	169	73	Text Field	Hello	قيمة النص		2025-04-21 12:04:59	2025-04-21 12:04:59	text	basic
557	169	74	Text Area Field	hamid	حقل منطقة النص		2025-04-21 12:04:59	2025-04-21 12:04:59	textarea	basic
558	169	75	Price	5000	ثمن		2025-04-21 12:04:59	2025-04-21 12:04:59	numeric	basic
559	169	76	Gender	Female	جنس		2025-04-21 12:04:59	2025-04-21 12:04:59	radio	basic
560	169	77	Mobile	+92 3441562554	جوال		2025-04-21 12:04:59	2025-04-21 12:04:59	mobile	basic
561	169	59	Select Category	1465	حدد الفئة		2025-04-21 12:04:59	2025-04-21 12:04:59	select	basic
562	169	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 12:04:59	2025-04-21 12:04:59	select	basic
563	169	79	Amenities	1	وسائل الراحه		2025-04-21 12:04:59	2025-04-21 12:04:59	amenities	basic
564	170	78	Multi option field	option2,option3,option1	حقل متعدد الخيارات		2025-04-21 12:14:12	2025-04-21 12:14:12	checkbox	basic
565	170	73	Text Field	Hdhd	قيمة النص		2025-04-21 12:14:12	2025-04-21 12:14:12	text	basic
566	170	74	Text Area Field	bxhz	حقل منطقة النص		2025-04-21 12:14:12	2025-04-21 12:14:12	textarea	basic
567	170	75	Price	6600	ثمن		2025-04-21 12:14:12	2025-04-21 12:14:12	numeric	basic
568	170	76	Gender	Male	جنس		2025-04-21 12:14:12	2025-04-21 12:14:12	radio	basic
569	170	59	Select Category	1465	حدد الفئة		2025-04-21 12:14:12	2025-04-21 12:14:12	select	basic
570	170	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 12:14:12	2025-04-21 12:14:12	select	basic
571	170	79	Amenities		وسائل الراحه		2025-04-21 12:14:12	2025-04-21 12:14:12	amenities	basic
572	176	78	Multi option field	option3,option1,option2	حقل متعدد الخيارات		2025-04-21 12:35:31	2025-04-21 12:35:31	checkbox	basic
573	176	73	Text Field	Hamid	قيمة النص		2025-04-21 12:35:31	2025-04-21 12:35:31	text	basic
574	176	74	Text Area Field	hello	حقل منطقة النص		2025-04-21 12:35:31	2025-04-21 12:35:31	textarea	basic
575	176	75	Price	600	ثمن		2025-04-21 12:35:31	2025-04-21 12:35:31	numeric	basic
576	176	76	Gender	Female	جنس		2025-04-21 12:35:31	2025-04-21 12:35:31	radio	basic
577	176	59	Select Category	1465	حدد الفئة		2025-04-21 12:35:31	2025-04-21 12:35:31	select	basic
578	176	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 12:35:31	2025-04-21 12:35:31	select	basic
579	176	79	Amenities	3,5,7,8,6	وسائل الراحه		2025-04-21 12:35:31	2025-04-21 12:35:31	amenities	basic
580	177	78	Multi option field	option2,option3,option1	حقل متعدد الخيارات		2025-04-21 12:56:17	2025-04-21 12:56:17	checkbox	basic
581	177	73	Text Field	Field	قيمة النص		2025-04-21 12:56:17	2025-04-21 12:56:17	text	basic
582	177	74	Text Area Field	bello	حقل منطقة النص		2025-04-21 12:56:17	2025-04-21 12:56:17	textarea	basic
583	177	75	Price	6000	ثمن		2025-04-21 12:56:17	2025-04-21 12:56:17	numeric	basic
584	177	76	Gender	Male	جنس		2025-04-21 12:56:17	2025-04-21 12:56:17	radio	basic
585	177	77	Mobile	+92 3441562554	جوال		2025-04-21 12:56:17	2025-04-21 12:56:17	mobile	basic
586	177	59	Select Category	1465	حدد الفئة		2025-04-21 12:56:17	2025-04-21 12:56:17	select	basic
587	177	60	Select Property Type	1468	اختر نوع العقار		2025-04-21 12:56:17	2025-04-21 12:56:17	select	basic
588	177	79	Amenities	4,6,8,10,9,7,5,3,1	وسائل الراحه		2025-04-21 12:56:17	2025-04-21 12:56:17	amenities	basic
589	178	78	Multi option field	option2,option3,option1	حقل متعدد الخيارات		2025-04-21 14:27:32	2025-04-21 14:27:32	checkbox	basic
590	178	73	Text Field	Hlo	قيمة النص		2025-04-21 14:27:32	2025-04-21 14:27:32	text	basic
591	178	74	Text Area Field	description	حقل منطقة النص		2025-04-21 14:27:32	2025-04-21 14:27:32	textarea	basic
592	178	75	Price	68550	ثمن		2025-04-21 14:27:32	2025-04-21 14:27:32	numeric	basic
593	178	76	Gender	Female	جنس		2025-04-21 14:27:32	2025-04-21 14:27:32	radio	basic
594	178	77	Mobile	+92 3441562554	جوال		2025-04-21 14:27:32	2025-04-21 14:27:32	mobile	basic
595	178	59	Select Category	1465	حدد الفئة		2025-04-21 14:27:32	2025-04-21 14:27:32	select	basic
596	178	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 14:27:32	2025-04-21 14:27:32	select	basic
597	178	79	Amenities	2,4,1,3,6,7,8,5,9,10	وسائل الراحه		2025-04-21 14:27:32	2025-04-21 14:27:32	amenities	basic
598	179	62	Make	1	الوضع والنموذج		2025-04-21 14:33:19	2025-04-21 14:33:19	make	basic
599	179	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
600	179	64	Year	5	سنة		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
601	179	65	Kilometers	7000	كيلومترات		2025-04-21 14:33:19	2025-04-21 14:33:19	numeric	basic
602	179	66	Body Type	7	نوع الجسم		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
603	179	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
604	179	68	Price	6000	سعر		2025-04-21 14:33:19	2025-04-21 14:33:19	numeric	basic
605	179	57	Model	65	Model		2025-04-21 14:33:19	2025-04-21 14:33:19	model	basic
606	180	62	Make	1	الوضع والنموذج		2025-04-21 14:50:15	2025-04-21 14:50:15	make	basic
607	180	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
608	180	64	Year	5	سنة		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
609	180	65	Kilometers	6000	كيلومترات		2025-04-21 14:50:15	2025-04-21 14:50:15	numeric	basic
610	180	66	Body Type	7	نوع الجسم		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
611	180	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
612	180	68	Price	9000	سعر		2025-04-21 14:50:15	2025-04-21 14:50:15	numeric	basic
613	180	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-21 14:50:15	2025-04-21 14:50:15	mobile	basic
614	180	57	Model	1	Model		2025-04-21 14:50:15	2025-04-21 14:50:15	model	basic
615	180	70	images		الصور		2025-04-21 14:51:52	2025-04-21 14:51:52	files	advance
616	180	56	Description	hello	وصف		2025-04-21 14:51:52	2025-04-21 14:51:52	textarea	advance
617	180	50	Fuel Type	11	نوع الوقود		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
618	180	51	Exterior Color	Black	اللون الخارجي		2025-04-21 14:51:52	2025-04-21 14:51:52	text	advance
619	180	52	Interior Color	1452	اللون الداخلي		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
620	180	53	Warranty	1454	الضمان		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
621	180	54	Body Condition	1456	حالة الجسم		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
622	180	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
623	181	62	Make	1	الوضع والنموذج		2025-04-21 18:00:19	2025-04-21 18:00:19	make	basic
624	181	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
625	181	64	Year	5	سنة		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
626	181	65	Kilometers	6000	كيلومترات		2025-04-21 18:00:19	2025-04-21 18:00:19	numeric	basic
627	181	66	Body Type	7	نوع الجسم		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
628	181	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
629	181	68	Price	25	سعر		2025-04-21 18:00:19	2025-04-21 18:00:19	numeric	basic
630	181	57	Model	1	Model		2025-04-21 18:00:19	2025-04-21 18:00:19	model	basic
631	181	70	images		الصور		2025-04-21 18:00:48	2025-04-21 18:00:48	files	advance
632	181	56	Description	description	وصف		2025-04-21 18:00:48	2025-04-21 18:00:48	textarea	advance
633	181	50	Fuel Type	11	نوع الوقود		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
634	181	51	Exterior Color	Black	اللون الخارجي		2025-04-21 18:00:48	2025-04-21 18:00:48	text	advance
635	181	52	Interior Color	1452	اللون الداخلي		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
636	181	53	Warranty	1454	الضمان		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
637	181	54	Body Condition	1456	حالة الجسم		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
638	181	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
639	182	62	Make	2	الوضع والنموذج		2025-04-22 06:32:37	2025-04-22 06:32:37	make	basic
640	182	63	Regional Specs	3	المواصفات الإقليمية		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
641	182	64	Year	6	سنة		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
642	182	65	Kilometers	25000	كيلومترات		2025-04-22 06:32:37	2025-04-22 06:32:37	numeric	basic
643	182	66	Body Type	8	نوع الجسم		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
644	182	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
645	182	68	Price	25000	سعر		2025-04-22 06:32:37	2025-04-22 06:32:37	numeric	basic
647	182	57	Model	4	Model		2025-04-22 06:32:37	2025-04-22 06:32:37	model	basic
652	182	52	Interior Color	1452	اللون الداخلي		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
646	182	69	Phone Number	+971 561663258	رقم التليفون		2025-04-22 06:32:37	2025-04-22 06:33:15	mobile	basic
648	182	70	images		الصور		2025-04-22 06:34:37	2025-04-22 06:34:37	files	advance
649	182	56	Description	good mileage \ngood condition	وصف		2025-04-22 06:34:37	2025-04-22 06:34:37	textarea	advance
650	182	50	Fuel Type	11	نوع الوقود		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
651	182	51	Exterior Color	White	اللون الخارجي		2025-04-22 06:34:37	2025-04-22 06:34:37	text	advance
653	182	53	Warranty	1454	الضمان		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
654	182	54	Body Condition	1456	حالة الجسم		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
655	182	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
656	183	62	Make	6	الوضع والنموذج		2025-04-22 07:08:10	2025-04-22 07:08:10	make	basic
657	183	63	Regional Specs	4	المواصفات الإقليمية		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
658	183	64	Year	6	سنة		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
659	183	65	Kilometers	3500	كيلومترات		2025-04-22 07:08:10	2025-04-22 07:08:10	numeric	basic
660	183	66	Body Type	7	نوع الجسم		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
661	183	67	Is your car insured in Syria	10	هل سيارتك مؤمنة في سوريا؟		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
662	183	68	Price	6557	سعر		2025-04-22 07:08:10	2025-04-22 07:08:10	numeric	basic
663	183	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-22 07:08:10	2025-04-22 07:08:10	mobile	basic
664	183	57	Model	46	Model		2025-04-22 07:08:10	2025-04-22 07:08:10	model	basic
665	183	70	images		الصور		2025-04-22 07:09:49	2025-04-22 07:09:49	files	advance
666	183	56	Description	description here for add posting	وصف		2025-04-22 07:09:49	2025-04-22 07:09:49	textarea	advance
667	183	50	Fuel Type	12	نوع الوقود		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
668	183	51	Exterior Color	Black	اللون الخارجي		2025-04-22 07:09:49	2025-04-22 07:09:49	text	advance
669	183	52	Interior Color	1452	اللون الداخلي		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
670	183	53	Warranty	1455	الضمان		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
671	183	54	Body Condition	1456	حالة الجسم		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
672	183	55	Mechanical Condition	1459	الحالة الميكانيكية		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
673	184	62	Make	1	الوضع والنموذج		2025-04-23 08:17:19	2025-04-23 08:17:19	make	basic
674	184	63	Regional Specs	4	المواصفات الإقليمية		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
675	184	64	Year	6	سنة		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
676	184	65	Kilometers	25000	كيلومترات		2025-04-23 08:17:19	2025-04-23 08:17:19	numeric	basic
677	184	66	Body Type	7	نوع الجسم		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
678	184	67	Is your car insured in Syria	10	هل سيارتك مؤمنة في سوريا؟		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
679	184	68	Price	29000	سعر		2025-04-23 08:17:19	2025-04-23 08:17:19	numeric	basic
681	184	57	Model	65	Model		2025-04-23 08:17:19	2025-04-23 08:17:19	model	basic
715	186	57	Model	5	Model		2025-04-23 08:59:19	2025-04-23 08:59:19	model	basic
716	186	70	images		الصور		2025-04-23 09:00:00	2025-04-23 09:00:00	files	advance
680	184	69	Phone Number	+971 561660258	رقم التليفون		2025-04-23 08:17:19	2025-04-23 08:19:46	mobile	basic
682	184	70	images		الصور		2025-04-23 08:22:30	2025-04-23 08:22:30	files	advance
683	184	56	Description	white maxima with 2014 model \nnew condition \nnew tires in warranty	وصف		2025-04-23 08:22:30	2025-04-23 08:22:30	textarea	advance
684	184	50	Fuel Type	11	نوع الوقود		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
685	184	51	Exterior Color	White	اللون الخارجي		2025-04-23 08:22:30	2025-04-23 08:22:30	text	advance
686	184	52	Interior Color	1452	اللون الداخلي		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
687	184	53	Warranty	1454	الضمان		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
688	184	54	Body Condition	1456	حالة الجسم		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
689	184	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
690	185	62	Make	10	الوضع والنموذج		2025-04-23 08:35:09	2025-04-23 08:35:09	make	basic
691	185	63	Regional Specs	3	المواصفات الإقليمية		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
692	185	64	Year	6	سنة		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
693	185	65	Kilometers	36000	كيلومترات		2025-04-23 08:35:09	2025-04-23 08:35:09	numeric	basic
694	185	66	Body Type	8	نوع الجسم		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
695	185	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
696	185	68	Price	35000	سعر		2025-04-23 08:35:09	2025-04-23 08:35:09	numeric	basic
697	185	69	Phone Number	+92 3352638307	رقم التليفون		2025-04-23 08:35:09	2025-04-23 08:35:09	mobile	basic
698	185	57	Model	118	Model		2025-04-23 08:35:09	2025-04-23 08:35:09	model	basic
699	185	70	images		الصور		2025-04-23 08:37:45	2025-04-23 08:37:45	files	advance
700	185	56	Description	Mercedes 02012 with new condition \nlittle engine problem	وصف		2025-04-23 08:37:45	2025-04-23 08:37:45	textarea	advance
701	185	50	Fuel Type	12	نوع الوقود		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
702	185	51	Exterior Color	Silver	اللون الخارجي		2025-04-23 08:37:45	2025-04-23 08:37:45	text	advance
703	185	52	Interior Color	1453	اللون الداخلي		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
704	185	53	Warranty	1454	الضمان		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
705	185	54	Body Condition	1456	حالة الجسم		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
706	185	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
707	186	62	Make	2	الوضع والنموذج		2025-04-23 08:59:19	2025-04-23 08:59:19	make	basic
708	186	63	Regional Specs	3	المواصفات الإقليمية		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
709	186	64	Year	5	سنة		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
710	186	65	Kilometers	88888	كيلومترات		2025-04-23 08:59:19	2025-04-23 08:59:19	numeric	basic
711	186	66	Body Type	7	نوع الجسم		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
712	186	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
713	186	68	Price	55888	سعر		2025-04-23 08:59:19	2025-04-23 08:59:19	numeric	basic
714	186	69	Phone Number	+963 5588888	رقم التليفون		2025-04-23 08:59:19	2025-04-23 08:59:19	mobile	basic
717	186	56	Description	hhffgc	وصف		2025-04-23 09:00:00	2025-04-23 09:00:00	textarea	advance
718	186	50	Fuel Type	11	نوع الوقود		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
719	186	51	Exterior Color	Ggvcc	اللون الخارجي		2025-04-23 09:00:00	2025-04-23 09:00:00	text	advance
720	186	52	Interior Color	1452	اللون الداخلي		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
721	186	53	Warranty	1454	الضمان		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
722	186	54	Body Condition	1456	حالة الجسم		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
723	186	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
724	187	64	Year	5	سنة		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
725	187	65	Kilometers	6000	كيلومترات		2025-04-24 09:15:22	2025-04-24 09:15:22	numeric	basic
726	187	66	Body Type	7	نوع الجسم		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
727	187	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
728	187	68	Price	6000	سعر		2025-04-24 09:15:22	2025-04-24 09:15:22	numeric	basic
729	187	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-24 09:15:22	2025-04-24 09:15:22	mobile	basic
730	187	62	Make	1	الوضع والنموذج		2025-04-24 09:15:22	2025-04-24 09:15:22	make	basic
731	187	63	Regional Specs	3	المواصفات الإقليمية		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
732	187	57	Model	1	Model		2025-04-24 09:15:22	2025-04-24 09:15:22	model	basic
733	187	70	images		الصور		2025-04-24 09:15:54	2025-04-24 09:15:54	files	advance
734	187	56	Description	hello	وصف		2025-04-24 09:15:54	2025-04-24 09:15:54	textarea	advance
735	187	50	Fuel Type	11	نوع الوقود		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
736	187	51	Exterior Color	Black	اللون الخارجي		2025-04-24 09:15:54	2025-04-24 09:15:54	text	advance
737	187	52	Interior Color	1452	اللون الداخلي		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
738	187	53	Warranty	1454	الضمان		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
739	187	54	Body Condition	1456	حالة الجسم		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
740	187	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
\.


--
-- Data for Name: ad_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_images (id, ad_id, image, field_id, created_at, updated_at) FROM stdin;
1	40	mpovKx2yeq1Rwj6g2CEf8sz2SpVu0f8mGS90ARJ9.png	70	2025-04-18 11:33:28	2025-04-18 11:33:28
2	85	yp7M8mtAA4eCSyLRvnd7HEy4bL4UeI4kKMc2U7GD.jpg	49	2025-04-19 13:17:30	2025-04-19 13:17:30
3	136	52Vr369tmMaoo6TvM8x0BKXvLQxy6QbZsrNRMOrn.png	70	2025-04-21 09:06:20	2025-04-21 09:06:20
4	180	2WY8vvFLwpYW2SNVOURW04apSNiKb1UaRNkZrlML.jpg	70	2025-04-21 14:51:52	2025-04-21 14:51:52
5	181	FK1XN9KtTyYqK6TOMsfvqYDfdkRDG19TGEawH2vX.jpg	70	2025-04-21 18:00:48	2025-04-21 18:00:48
6	182	ShBG9KIYjJ4kh5rBsGQJTgnFwJKZg4CmNdFl9M4g.jpg	70	2025-04-22 06:34:37	2025-04-22 06:34:37
7	183	ZvW2u6IsaAxN0IVz2uUU4hLFRkkesvtWsDqEK0Og.jpg	70	2025-04-22 07:09:49	2025-04-22 07:09:49
8	183	RqWINuiymazeXTpLp81sHD50sOTno8vl4HGxRjCv.jpg	70	2025-04-22 07:09:49	2025-04-22 07:09:49
9	183	rXfQ7M9hOAl7XT3fpdeYG5hV7Zm8CuGw2Dg33Mea.jpg	70	2025-04-22 07:09:49	2025-04-22 07:09:49
10	183	MX41u8HMOwJabf2ReyS7rJ4WhaGbW8IfyLP6zTw2.jpg	70	2025-04-22 07:10:37	2025-04-22 07:10:37
11	183	zGt1kFkmV2NEby0LBgaFi4AiVskJPZoI0jxVwfIL.jpg	70	2025-04-22 07:10:37	2025-04-22 07:10:37
12	183	xGZwPTjtyMqXTe2jAojsX7tENXNWxRtO4EZ5aghG.jpg	70	2025-04-22 07:10:37	2025-04-22 07:10:37
13	184	gRupmo97XjWoAqjkH9S8dADytJAf1tNicLemJOTg.jpg	70	2025-04-23 08:22:30	2025-04-23 08:22:30
14	185	q3L979dt2ielFcBQYonpND5aINd7YzULudaENqEu.jpg	70	2025-04-23 08:37:45	2025-04-23 08:37:45
15	185	odQ9zsV037CJv4PcHUJ3iwR8X2eAgvEUXuOyzQHn.jpg	70	2025-04-23 08:37:45	2025-04-23 08:37:45
16	185	gSmf3aJBTfP33kG1rNb5vR1AzIVRWuwAm8y5TDXI.jpg	70	2025-04-23 08:37:45	2025-04-23 08:37:45
17	186	ADWVyVlsmeSOSSGnGTkDCJdeZe5MBdTySdb3XUm9.jpg	70	2025-04-23 09:00:00	2025-04-23 09:00:00
18	187	pgJm0FLEzSlvlBz0dVWn8k1P4cP6mpQiqXyva3qN.jpg	70	2025-04-24 09:15:54	2025-04-24 09:15:54
\.


--
-- Data for Name: ad_plans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_plans (id, pricing_plan_id, ad_id, name, duration, price, currency, tax, created_at, updated_at, duration_id, payment_method, total_price, discount, promo_code, payment_id) FROM stdin;
1	1	4	Free	30	0	SYP	0	\N	\N	\N	\N	\N	\N	\N	\N
2	1	1	Free	30	0	AED	0	2025-03-19 14:57:57	2025-03-19 14:57:57	\N	\N	\N	\N	\N	\N
3	1	2	Free	30	0	AED	0	2025-04-09 17:18:40	2025-03-19 14:57:57	\N	\N	\N	\N	\N	\N
4	1	86	Free	30	0.00	AED	0	2025-04-19 13:22:30	2025-04-19 13:22:30	\N	3	0.00	0.00	\N	\N
5	2	88	Standard	30	100.00	AED	0	2025-04-19 13:47:17	2025-04-19 13:47:17	\N	3	100.00	0.00	\N	3
6	2	89	Standard	30	100.00	AED	0	2025-04-19 16:48:59	2025-04-19 16:48:59	\N	1	100.00	0.00	\N	4
7	2	90	Standard	30	100.00	AED	0	2025-04-19 16:59:09	2025-04-19 16:59:09	\N	3	100.00	0.00	\N	7
8	2	121	Standard	30	100.00	AED	0	2025-04-19 17:45:38	2025-04-19 17:45:38	\N	1	100.00	0.00	\N	8
9	2	122	Standard	30	100.00	AED	0	2025-04-19 18:09:05	2025-04-19 18:09:05	\N	1	100.00	0.00	\N	9
10	2	131	Standard	30	100.00	AED	0	2025-04-19 18:47:09	2025-04-19 18:47:09	\N	1	100.00	0.00	\N	15
11	2	131	Standard	30	100.00	AED	0	2025-04-19 18:49:12	2025-04-19 18:49:12	\N	1	100.00	0.00	\N	15
12	2	131	Standard	30	100.00	AED	0	2025-04-19 18:49:33	2025-04-19 18:49:33	\N	1	100.00	0.00	\N	15
13	2	132	Standard	30	100.00	AED	0	2025-04-19 18:50:50	2025-04-19 18:50:50	\N	1	100.00	0.00	\N	16
14	2	132	Standard	30	100.00	AED	0	2025-04-19 18:51:57	2025-04-19 18:51:57	\N	1	100.00	0.00	\N	16
15	2	132	Standard	30	100.00	AED	0	2025-04-19 18:51:57	2025-04-19 18:51:57	\N	1	100.00	0.00	\N	17
16	2	134	Standard	30	100.00	AED	0	2025-04-19 18:56:54	2025-04-19 18:56:54	\N	1	100.00	0.00	\N	18
17	1	142	Free	30	0.00	AED	0	2025-04-21 09:26:38	2025-04-21 09:26:38	\N	3	0.00	0.00	\N	\N
18	1	150	Free	30	0.00	AED	0	2025-04-21 09:41:42	2025-04-21 09:41:42	\N	3	0.00	0.00	\N	\N
19	1	165	Free	30	0.00	AED	0	2025-04-21 11:27:38	2025-04-21 11:27:38	\N	3	0.00	0.00	\N	\N
20	1	169	Free	30	0.00	AED	0	2025-04-21 12:05:13	2025-04-21 12:05:13	\N	3	0.00	0.00	\N	\N
21	1	177	Free	30	0.00	AED	0	2025-04-21 12:56:35	2025-04-21 12:56:35	\N	3	0.00	0.00	\N	\N
22	1	178	Free	30	0.00	AED	0	2025-04-21 14:27:48	2025-04-21 14:27:48	\N	3	0.00	0.00	\N	\N
23	1	180	Free	30	0.00	AED	0	2025-04-21 14:52:03	2025-04-21 14:52:03	\N	3	0.00	0.00	\N	\N
24	1	181	Free	30	0.00	AED	0	2025-04-21 18:00:53	2025-04-21 18:00:53	\N	3	0.00	0.00	\N	\N
25	2	182	Standard	30	100.00	AED	0	2025-04-22 06:35:29	2025-04-22 06:35:29	\N	1	100.00	0.00	\N	19
26	2	183	Standard	30	100.00	AED	0	2025-04-22 07:25:30	2025-04-22 07:25:30	\N	1	100.00	0.00	\N	20
27	2	184	Standard	30	100.00	AED	0	2025-04-23 08:22:48	2025-04-23 08:22:48	\N	3	100.00	0.00	\N	21
28	3	185	Premium	30	200.00	AED	0	2025-04-23 08:38:23	2025-04-23 08:38:23	3	1	200.00	0.00	\N	22
29	2	187	Standard	30	100.00	AED	0	2025-04-24 09:16:01	2025-04-24 09:16:01	\N	3	100.00	0.00	\N	23
30	2	187	Standard	30	100.00	AED	0	2025-04-24 09:16:46	2025-04-24 09:16:46	\N	1	100.00	0.00	\N	24
31	2	187	Standard	30	100.00	AED	0	2025-04-24 09:25:52	2025-04-24 09:25:52	\N	3	100.00	0.00	\N	25
32	2	187	Standard	30	100.00	AED	0	2025-04-24 09:28:03	2025-04-24 09:28:03	\N	3	100.00	0.00	\N	26
\.


--
-- Data for Name: ad_report_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_report_types (id, name, name_ar, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: ad_reports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_reports (id, ad_id, report_type_id, user_id, description, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: ad_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_requests (id, user_id, parent_category_id, sub_category_id, first_name, dial_code, phone_number, email, description, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: badges; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.badges (id, name, name_ar, type, description, description_ar, icon, status, created_at, updated_at, deleted_at) FROM stdin;
2	BageTwo	BageTwo	upgrade	BageTwo	BageTwo	68371b4be28ec_1748441931.png	1	2025-05-28 14:18:51	2025-05-28 14:18:52	\N
1	Badge1	شارة1	upgrade	90% of the members prefer to contact profiles with photos!	90% من الأعضاء يفضلون التواصل عبر الملفات الشخصية التي تحتوي على صور!	68371ab817642_1748441784.png	1	2025-05-26 10:54:42	2025-07-14 05:58:08	\N
\.


--
-- Data for Name: cache; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cache (key, value, expiration) FROM stdin;
\.


--
-- Data for Name: cache_locks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cache_locks (key, owner, expiration) FROM stdin;
\.


--
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.categories (id, name, name_ar, status, parent_id, created_at, updated_at, sort_order, icon) FROM stdin;
152	Women's Accessories	إكسسوارات نسائية	1	146	2025-04-19 13:47:12	2025-04-19 13:47:12	0	\N
154	Kid's Accessories	إكسسوارات للأطفال	1	148	2025-04-19 13:50:42	2025-04-19 13:50:42	0	\N
3	Holiday homes	بيوت العطالت	1	8	2025-04-08 06:00:56	2025-04-20 04:07:38	0	\N
12	Transportation Services	سيارات جديدة	1	50	2025-04-08 08:23:44	2025-04-20 04:09:43	0	\N
8	Vacation Offers	العطلات و السياجة	1	\N	2025-04-08 06:14:29	2025-04-23 07:22:33	0	OVDEvX0HbFfZBCIsoXrDc7CWmoDRya8XkNTurzru.png
9	Properties	عقارات	1	\N	2025-04-08 06:15:16	2025-04-23 09:13:48	0	NzHBfyCNqKgyiJ3LzgeWtpLrdvEAkwcnyg9F74O2.png
13	New Building	ابنية و مجمعات جديدة	1	9	2025-04-09 07:33:47	2025-04-10 05:48:49	0	\N
18	Promotions and discounts	الترويج و التخفيضات	1	\N	2025-04-09 07:53:44	2025-04-23 09:14:03	0	phJGx25ZJ8LAHMXc0CREH6TdRDW1riMlH020kv0t.png
15	Properties For Sale	عقارات للبيع	1	9	2025-04-09 07:51:12	2025-04-10 05:49:21	0	\N
2	Businesses & Opportunities	فرص و أعمال	1	\N	2025-03-20 08:02:34	2025-04-23 09:14:25	0	T6YzVNyszDkbJ8E0EJA2UAxESJwSWftq2K4VeVjD.png
4	Jobs	وظائف	1	\N	2025-04-08 06:11:50	2025-04-23 09:14:42	0	LRXajRiPggrfiMbKj5FAzP6Vy0NmP7aZxMc415r6.png
7	Education	التعليم و التأهيل	1	18	2025-04-08 06:13:16	2025-04-10 06:08:55	0	\N
10	Used Cars	سيارات مستعملة	1	34	2025-04-08 08:18:33	2025-04-11 02:55:19	0	\N
11	Rent Cars	سيارات للإيجار	1	34	2025-04-08 08:21:55	2025-04-18 07:46:43	0	\N
5	New Cars	سيارات جديدة	1	34	2025-03-18 05:38:01	2025-04-18 07:48:47	0	\N
14	Properties For Rent	عقارات للإيجار	1	9	2025-04-09 07:34:35	2025-04-18 18:26:52	0	\N
6	Fitness & Beauty	اللياقة و الجمال	1	18	2025-04-08 06:12:37	2025-04-18 18:43:19	0	\N
33	Event & Ticket	تذاكر العروض	1	18	\N	2025-04-18 19:03:43	0	\N
16	Domestic Tourism Trips	رحلات سياحة داخلية	1	8	2025-04-09 07:52:34	2025-04-19 02:54:22	0	\N
146	For Women	نسائي	1	145	2025-04-19 13:30:51	2025-04-19 13:34:15	0	\N
148	For Kids	ولادي	1	145	2025-04-19 13:32:11	2025-04-19 13:43:33	0	\N
150	Men's Clothing	ملابس رجالي	1	147	2025-04-19 13:45:32	2025-04-19 13:45:32	0	\N
17	Historical tourism	المعالم الدينية والتاريخية	1	8	2025-04-09 07:52:58	2025-04-10 05:52:40	0	\N
65	Auto Accessories & spare parts	قطع غيار و اكسسوارات	1	34	2025-04-18 17:26:11	2025-04-19 10:56:08	0	\N
19	Tourism & Travel Offers	عروض السياحة و السفر	1	8	2025-04-09 07:54:30	2025-04-19 02:58:25	0	\N
68	International Properties	عقارات دولية	1	9	2025-04-18 18:31:29	2025-04-18 18:31:29	0	\N
22	Holiday Services	رحالت سياحية داخلية	1	8	2025-04-09 07:56:23	2025-04-10 05:54:32	0	\N
28	Looking for Agents & distributors	مطلوب وكلاء و موزعين	1	2	2025-04-09 08:18:47	2025-04-18 19:11:20	0	\N
23	For Export	للتصدير	1	2	2025-04-09 08:08:15	2025-04-18 19:09:26	0	\N
73	Exhibitions	معارض داخلية و دولية	1	2	2025-04-18 19:18:40	2025-04-18 19:18:40	0	\N
29	International Agencies	عقود وكالات عالمية	1	2	2025-04-09 08:19:27	2025-04-18 19:15:54	0	\N
74	Meal Offers	المطاعم و الوجبات	1	\N	2025-04-19 02:26:16	2025-04-23 06:41:36	0	EXngLThuNKhIHYlsVX4QnRQvJFAiIDOP9x5wLCXW.png
30	Find Jobs	فرص وظائف	1	4	2025-04-09 08:21:06	2025-04-10 06:05:41	0	\N
20	Rent Farms	مزارع للايجار	1	8	2025-04-09 07:55:00	2025-04-19 02:57:08	0	\N
32	Freelancer	اعمال حرة	1	4	2025-04-09 08:22:28	2025-04-10 06:06:12	0	\N
35	Shopping	التسوق	1	18	2025-04-10 06:10:58	2025-04-10 06:10:58	0	\N
36	Beauty Centers	مراكز التجميل	1	6	2025-04-10 06:15:05	2025-04-10 06:15:05	0	\N
40	Schools	مدارس	1	7	2025-04-10 06:24:14	2025-04-10 06:24:14	0	\N
41	Universities	جامعات	1	7	2025-04-10 06:24:47	2025-04-10 06:24:47	0	\N
47	Malls	المراكز التجارية	1	35	2025-04-10 06:34:12	2025-04-10 06:34:12	0	\N
46	Kids Show	عروض للأطفال	1	33	2025-04-10 06:32:57	2025-04-18 19:05:50	0	\N
43	Tutors and classes	معلمون و دروس خصوصي	1	7	2025-04-10 06:30:32	2025-04-18 19:02:23	0	\N
51	Auto Services	خدمات السيارات	1	50	2025-04-10 06:38:13	2025-04-10 06:38:13	0	\N
52	Home Maintenance	خدمات صيانة المنزل	1	50	2025-04-10 06:38:57	2025-04-10 06:38:57	0	\N
53	Repairs	تصليح اجهزة	1	50	2025-04-10 06:40:51	2025-04-10 06:40:51	0	\N
56	Health & Wellbeing Services	خدمات لياقة و تدريب رياضي	1	50	2025-04-10 06:42:55	2025-04-10 06:42:55	0	\N
57	Digital Marketing Services	خدمات تسويق الكتروني	1	50	2025-04-10 06:43:22	2025-04-10 06:43:22	0	\N
61	Pets	الحيوانات االليفة	1	50	2025-04-10 06:45:57	2025-04-10 06:45:57	0	\N
62	Other Services	خدمات اخرى	1	50	2025-04-10 06:46:24	2025-04-10 06:46:24	0	\N
81	Event Services	خدمات المناسبات	1	\N	2025-04-19 02:35:38	2025-04-23 09:15:16	0	pJ3T4QRp6ukzhU9tXj6voshye5r5sniP0YKUZBzi.png
63	Import Cars	ٍسيارات للإستيراد	1	34	2025-04-18 07:52:29	2025-04-18 07:52:29	0	\N
64	Motorcycles	متورات	1	34	2025-04-18 07:53:41	2025-04-18 07:53:41	0	\N
66	Heavy Vehicles	مركبات ثقيلة	1	34	2025-04-18 17:27:56	2025-04-18 17:27:56	0	\N
67	Boats and Watercraft	قوارب و مركبات بحرية	1	34	2025-04-18 17:31:39	2025-04-18 17:31:39	0	\N
21	Holiday Homes	بيوت العطلات	1	8	2025-04-09 07:55:38	2025-04-18 18:28:34	0	\N
72	Hair Salons	صالونات شعر	1	6	2025-04-18 18:49:57	2025-04-18 18:49:57	0	\N
37	Gyms	نوادي رياضية	1	6	2025-04-10 06:21:10	2025-04-18 18:51:20	0	\N
39	Dental Beauty Centers	مراكز تجميل اسنان	1	6	2025-04-10 06:23:03	2025-04-18 18:52:44	0	\N
42	Training & learning centers	معاهد تعليم و تدريب	1	7	2025-04-10 06:27:18	2025-04-18 19:01:30	0	\N
48	Shops	محلات التجارية	1	35	2025-04-10 06:34:44	2025-04-18 18:56:17	0	\N
45	Event	تذاكر الفعاليات	1	33	2025-04-10 06:31:55	2025-04-18 19:04:45	0	\N
25	Investment Opportunities	فرص للإستثمار	1	2	2025-04-09 08:10:30	2025-04-18 19:08:38	0	\N
75	Breakfast Offers	عروض الفطور	1	74	2025-04-19 02:27:46	2025-04-19 02:27:46	0	\N
76	Lunch & Dinner Offers	عروض الغداء و العشاء	1	74	2025-04-19 02:28:33	2025-04-19 02:28:33	0	\N
77	Cafe Offers	عروض الكافيهات	1	74	2025-04-19 02:29:19	2025-04-19 02:29:19	0	\N
78	Fast Food	وجبات سريعة	1	74	2025-04-19 02:30:12	2025-04-19 02:30:12	0	\N
79	Bakeries & Pastries	مخابز و معجنات	1	74	2025-04-19 02:31:04	2025-04-19 02:31:04	0	\N
80	Desserts	حلويات	1	74	2025-04-19 02:31:39	2025-04-19 02:31:39	0	\N
82	Event Halls	صالات المناسبات	1	81	2025-04-19 02:36:43	2025-04-19 02:36:43	0	\N
31	Hire Talent	باحثين عن وظائف	1	4	2025-04-09 08:22:05	2025-04-19 02:45:01	0	\N
54	Legal Services	خدمات قانونية و معاملات	1	50	2025-04-10 06:41:35	2025-04-19 12:34:22	0	\N
55	Cleaning Services	خدمات التنظيف	1	50	2025-04-10 06:42:25	2025-04-19 12:35:49	0	\N
60	Construction and cladding services	خدمات البناء و الاكساء	1	50	2025-04-10 06:45:08	2025-04-19 12:38:20	0	\N
59	Graduation Projects Services	خدمات مشاريع التخرج	1	50	2025-04-10 06:44:25	2025-04-19 12:38:52	0	\N
147	For Men	رجالي	1	145	2025-04-19 13:31:30	2025-04-19 13:35:13	0	\N
151	Kid's Clothing	ملابس اطفال	1	148	2025-04-19 13:46:14	2025-04-19 13:46:14	0	\N
149	Women's Clothing	البسة نسائية	1	146	2025-04-19 13:32:39	2025-04-19 13:41:05	0	\N
153	Men's Accessories	إكسسوارات رجالية	1	147	2025-04-19 13:49:38	2025-04-19 13:49:38	0	\N
34	Motors	سيارات و قطع غيار	1	\N	2025-04-10 05:45:15	2025-04-23 06:42:24	0	rNATG3nEOxV6Jx3R6QpVDiMp80V7fI0B1MJwWHkA.png
83	Wedding & Event Planning	خدمات تنظيم الاعراس و المناسبات	1	81	2025-04-19 02:38:17	2025-04-19 02:38:17	0	\N
84	Event Photography	تصوير و مونتاج الحفلات	1	81	2025-04-19 02:39:21	2025-04-19 02:39:21	0	\N
85	Wedding Dresses	فساتين أعراس	1	81	2025-04-19 02:40:13	2025-04-19 02:40:13	0	\N
86	Flower Bouquets	باقات زهور و تنسيق	1	81	2025-04-19 02:41:11	2025-04-19 02:41:11	0	\N
87	Occasion Gifts	هدايا للمناسبات	1	81	2025-04-19 02:42:13	2025-04-19 02:42:13	0	\N
88	Hotels Offer	عروض الفنادق	1	8	2025-04-19 02:56:25	2025-04-19 02:56:25	0	\N
89	Solar & Sustainable Energy	الطاقة الشمسية و المستدامة	1	50	2025-04-19 12:19:24	2025-04-19 12:19:24	0	\N
90	Auto Mechanic Repair	تصليح ميكانيك السيارات	1	51	2025-04-19 12:21:29	2025-04-19 12:21:29	0	\N
91	Air condition & Electrical Repairing	صيانة الكهرباء و التكيف	1	51	2025-04-19 12:22:07	2025-04-19 12:22:07	0	\N
92	Auto Body Repair	سمكري سيارات	1	51	2025-04-19 12:23:31	2025-04-19 12:23:31	0	\N
93	Tyres & Oil Services	خدمة الاطارات و تغير الزيت	1	51	2025-04-19 12:24:46	2025-04-19 12:24:46	0	\N
94	Car Wash	غسيل سيارات	1	51	2025-04-19 12:26:02	2025-04-19 12:26:02	0	\N
95	General Maintenance	صيانة منازل عام	1	52	2025-04-19 12:28:06	2025-04-19 12:28:06	0	\N
96	Electricians	كهرباء منازل	1	52	2025-04-19 12:29:29	2025-04-19 12:29:29	0	\N
97	Painters	دهانات منازل	1	52	2025-04-19 12:30:07	2025-04-19 12:30:07	0	\N
98	Curtain Repair & installation	تركيب و صيانة الستائر	1	52	2025-04-19 12:31:16	2025-04-19 12:31:16	0	\N
99	Carpet & Curtain Washing	غسيل سجاد و ستائر	1	52	2025-04-19 12:31:56	2025-04-19 12:31:56	0	\N
100	Device maintenance	صيانة الاجهزة	1	50	2025-04-19 12:33:40	2025-04-19 12:33:40	0	\N
101	Consultancy Services	خدمات استشارية	1	50	2025-04-19 12:35:16	2025-04-19 12:35:16	0	\N
102	Fitness & Sports Trainer	خدمات لياقة و تدريب رياضي	1	50	2025-04-19 12:36:56	2025-04-19 12:36:56	0	\N
103	Sewing & Embroidery	خياطه و تطريز	1	50	2025-04-19 12:40:01	2025-04-19 12:40:01	0	\N
104	Carpentry & Upholstery	نجارة و تنجيد	1	50	2025-04-19 12:41:21	2025-04-19 12:41:21	0	\N
106	Mobiles & Tablets	موبايلات و تابلت	1	105	2025-04-19 12:43:40	2025-04-19 12:43:40	0	\N
107	Mobiles	موبايلات	1	106	2025-04-19 12:44:19	2025-04-19 12:44:19	0	\N
108	Tablets	تابلت	1	106	2025-04-19 12:45:03	2025-04-19 12:45:03	0	\N
109	Mobile & Tablet Accessories	اكسسوارات موبايل و تابلت	1	106	2025-04-19 12:46:06	2025-04-19 12:46:06	0	\N
110	Electronics	أجهزة الكترونية	1	105	2025-04-19 12:47:38	2025-04-19 12:47:38	0	\N
112	TV's	تلفزيونات	1	111	2025-04-19 12:49:21	2025-04-19 12:49:21	0	\N
113	Audio	صوتيات منزلية	1	111	2025-04-19 12:49:52	2025-04-19 12:49:52	0	\N
114	Receivers	ريسيفرات	1	111	2025-04-19 12:50:24	2025-04-19 12:50:24	0	\N
115	Computer & Accessories	كمبيوتر و اكسسوارات	1	105	2025-04-19 12:51:31	2025-04-19 12:51:31	0	\N
116	Computer	كمبيوتر	1	115	2025-04-19 12:52:00	2025-04-19 12:52:00	0	\N
117	laptop	لاب توب	1	115	2025-04-19 12:52:36	2025-04-19 12:52:36	0	\N
118	Computer Accessories & Spare Parts	أكسسوارات و قطع غيار كمبيوتر	1	115	2025-04-19 12:53:37	2025-04-19 12:53:37	0	\N
119	Mobile Packages	باقات اتصالات	1	106	2025-04-19 12:55:23	2025-04-19 12:55:23	0	\N
120	Home Appliances	أجهزة منزلية	1	105	2025-04-19 12:58:17	2025-04-19 12:58:17	0	\N
121	Refrigerators & Freezers	برادات و فريزرات	1	120	2025-04-19 12:59:02	2025-04-19 12:59:02	0	\N
122	Ovens & Microwave	أفران غاز و مايكروويف	1	120	2025-04-19 12:59:30	2025-04-19 12:59:30	0	\N
123	Washing Machines	غسالات	1	120	2025-04-19 13:00:58	2025-04-19 13:00:58	0	\N
124	Dishwashers	غسالات صحون	1	120	2025-04-19 13:01:37	2025-04-19 13:01:37	0	\N
125	Coolers	مبردات مياه	1	120	2025-04-19 13:02:10	2025-04-19 13:02:10	0	\N
126	Ac & Fans	مكيفات و مراوح	1	120	2025-04-19 13:02:48	2025-04-19 13:02:48	0	\N
127	Vacuum	مكانس كهربائية	1	120	2025-04-19 13:03:17	2025-04-19 13:03:17	0	\N
128	Other Home Appliances	أجهزة منزلية اخرى	1	120	2025-04-19 13:03:51	2025-04-19 13:03:51	0	\N
129	Cameras & Accessories	كاميرات تصوير و اكسسوارات	1	111	2025-04-19 13:09:22	2025-04-19 13:11:35	0	\N
111	TV & Audio & Cameras	تلفيزيونات و صوتيات و كاميرات	1	110	2025-04-19 12:48:31	2025-04-19 13:12:16	0	\N
130	Security Cameras	كاميرات مراقبة	1	111	2025-04-19 13:15:19	2025-04-19 13:15:19	0	\N
131	Telescope	مناظير	1	111	2025-04-19 13:15:56	2025-04-19 13:15:56	0	\N
132	Video Games & Devices	أجهزة و ألعاب فيديو	1	115	2025-04-19 13:17:09	2025-04-19 13:17:09	0	\N
133	Furniture & Decoration	مفروشات و ديكور	1	105	2025-04-19 13:19:56	2025-04-19 13:19:56	0	\N
134	Bedroom	غرف نوم	1	133	2025-04-19 13:20:26	2025-04-19 13:20:26	0	\N
135	living Room	غرف معيشة	1	133	2025-04-19 13:21:00	2025-04-19 13:21:00	0	\N
136	Dining Room	غرف سفرة	1	133	2025-04-19 13:21:31	2025-04-19 13:21:31	0	\N
137	Bathroom Accessories	إكسسوارات الحمام	1	133	2025-04-19 13:22:03	2025-04-19 13:22:03	0	\N
138	Kitchen & Tools	المطبخ و أدواته	1	133	2025-04-19 13:22:53	2025-04-19 13:22:53	0	\N
139	Carpets &  Curtains	سجاد و ستائر	1	133	2025-04-19 13:23:50	2025-04-19 13:23:50	0	\N
140	lighting	إضاءة	1	133	2025-04-19 13:24:20	2025-04-19 13:24:20	0	\N
141	Garden & Outdoor Areas	الحديقة و المفروشات الخارجية	1	133	2025-04-19 13:25:46	2025-04-19 13:25:46	0	\N
142	Other Furniture & décor	أثاث متعدد و ديكور	1	133	2025-04-19 13:26:22	2025-04-19 13:26:22	0	\N
143	Sports Equipment	أجهزة و ادوات رياضية	1	105	2025-04-19 13:27:43	2025-04-19 13:27:43	0	\N
144	Office Furniture	مفروشات مكتبية	1	133	2025-04-19 13:29:12	2025-04-19 13:29:12	0	\N
145	Fashion	الموضة و الاناقة	1	105	2025-04-19 13:30:21	2025-04-19 13:30:21	0	\N
155	Tools & Industrial Machines	أدوات و آلات صناعية	1	105	2025-04-19 13:54:08	2025-04-19 13:54:08	0	\N
157	Cosmetics	مستحضرات التجميل	1	156	2025-04-19 13:56:37	2025-04-19 13:56:37	0	\N
158	Perfumes	العطور	1	156	2025-04-19 13:57:22	2025-04-19 13:57:22	0	\N
159	Hair Care Products	مستحضرات العناية بالشعر	1	156	2025-04-19 13:58:05	2025-04-19 13:58:05	0	\N
160	skin Care Products	مستحضرات العناية بالبشرة	1	156	2025-04-19 13:58:42	2025-04-19 13:58:42	0	\N
161	Nutritional Supplements & Protein	المكملات الغذائية و البروتين	1	156	2025-04-19 13:59:23	2025-04-19 13:59:23	0	\N
162	Elderly Care Product	منتجات العناية بكبار السن	1	156	2025-04-19 14:00:52	2025-04-19 14:00:52	0	\N
156	Personal Care Products	مستحضرات عناية شخصية	1	\N	2025-04-19 13:56:03	2025-04-22 11:17:19	0	zhHlxyKPnzEKoeqtD0HCP8NGBB1UBErO7phAtz4k.png
105	Classified	إعلانات مبوبة	1	\N	2025-04-19 12:42:43	2025-04-23 06:43:31	0	dIiLVeqxjrDsk1GdZq36VkANV1tcS3VHMUESrI9W.png
50	Services	خدمات	1	\N	2025-04-10 06:37:38	2025-04-23 07:23:33	0	TMdUGXwdu564JK3GwL9hW8BIvKX1dOpXZklWi0Bi.png
\.


--
-- Data for Name: category_atributes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.category_atributes (id, category_id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
2	5	Regional Specs	المواصفات الإقليمية	1	2025-03-18 11:24:06	2025-03-18 11:24:06	\N
3	5	Year	سنة	1	2025-03-18 11:24:45	2025-03-18 11:24:45	\N
4	5	Body Type	نوع الجسم	1	2025-03-18 11:25:27	2025-03-18 11:25:27	\N
5	5	Insurance	تأمين	1	2025-03-18 11:26:47	2025-03-18 11:26:47	\N
6	5	Fuel Type	نوع الوقود	1	2025-03-18 11:28:06	2025-03-20 08:09:34	\N
7	5	Exterior Color	اللون الخارجي	1	2025-03-20 08:41:06	2025-03-20 08:41:06	\N
13	5	sdfs	sdfd	1	2025-03-25 04:18:03	2025-03-25 04:18:03	\N
8	14	Property Type	Property Type	1	2025-03-20 09:33:07	2025-04-10 06:51:42	\N
9	14	Housing Category	Housing Category	1	2025-03-20 09:37:22	2025-04-10 06:53:01	\N
10	14	Is it furnished?	Is it furnished?	1	2025-03-20 09:43:55	2025-04-10 06:53:35	\N
11	14	Facilities	Facilities	1	2025-03-20 09:49:54	2025-04-10 06:58:36	\N
14	14	Listed by	Listed by	1	2025-04-10 07:25:16	2025-04-10 07:25:16	\N
15	14	Rent is Paid	Rent is Paid	1	2025-04-10 07:25:49	2025-04-10 07:25:49	\N
16	5	Interior Color	اللون الداخلي	1	2025-04-17 06:22:29	2025-04-17 06:22:29	\N
17	5	Warranty	الضمان	1	2025-04-17 06:23:03	2025-04-17 06:23:03	\N
18	5	Body Condition	حالة الجسم	1	2025-04-17 06:23:34	2025-04-17 06:23:34	\N
19	5	Mechanical Condition	الحالة الميكانيكية	1	2025-04-17 06:24:26	2025-04-17 06:24:26	\N
1	5	Make & Model	الماركة والموديل	1	2025-03-18 05:44:13	2025-04-18 17:44:48	\N
20	10	Can start	dd	1	2025-04-18 21:34:34	2025-04-18 21:34:34	\N
21	15	Residential	سكني	1	2025-04-19 17:25:32	2025-04-19 17:25:32	\N
22	15	Commercial	تجاري	1	2025-04-19 17:26:44	2025-04-19 17:26:44	\N
23	15	Land	أرض	1	2025-04-19 17:27:44	2025-04-19 17:27:44	\N
24	15	Multiple Units	وحدات متعددة	1	2025-04-19 17:28:17	2025-04-19 17:28:17	\N
25	15	Property Type	نوع العقار	1	2025-04-19 18:44:36	2025-04-19 18:44:36	\N
26	15	Category	باب	1	2025-04-19 18:46:32	2025-04-19 18:46:32	\N
27	14	Residential type	Residential type	1	2025-04-22 10:03:49	2025-04-22 10:03:49	\N
28	14	Commercial Categories	Commercial Categories	1	2025-04-22 11:13:04	2025-04-22 11:13:04	\N
29	14	Property Status	حالة العقار	1	2025-04-24 08:29:51	2025-04-24 08:29:51	\N
30	14	Floor	الطابق	1	2025-04-24 08:30:43	2025-04-24 08:30:43	\N
31	14	Property directions	اتجاهات العقار	1	2025-04-24 08:31:23	2025-04-24 08:31:23	\N
32	14	Bedrooms	غرف النوم	1	2025-04-24 08:32:15	2025-04-24 08:32:15	\N
33	14	Bathrooms	الحمّامات	1	2025-04-24 08:32:40	2025-04-24 08:32:40	\N
34	14	Area/Size	المساحة	1	2025-04-24 08:33:24	2025-04-24 08:33:24	\N
35	14	Near By	بالقرب من	1	2025-04-24 08:35:37	2025-04-24 08:35:37	\N
36	14	Currency	العملة	1	2025-04-24 08:37:13	2025-04-24 08:37:13	\N
37	14	Price Type	نوع السعر	1	2025-04-24 08:37:54	2025-04-24 08:37:54	\N
\.


--
-- Data for Name: category_atributes_value; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.category_atributes_value (id, category_id, attribute_id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
1	5	1	Honda Civic X Turbo RS 1.5	هوندا سيفيك X توربو RS 1.5	1	2025-03-18 05:51:53	2025-03-18 11:19:53	\N
2	5	1	Toyota Corolla Altis 1.8 Grande	تويوتا كورولا ألتيس 1.8 غراندي	1	2025-03-18 11:18:57	2025-03-18 11:18:57	\N
3	5	2	GCC Specs	GCC Specs	1	2025-03-18 11:28:56	2025-03-18 11:28:56	\N
5	5	3	2025	2025	1	2025-03-18 11:30:13	2025-03-18 11:30:13	\N
6	5	3	2024	2024	1	2025-03-18 11:30:36	2025-03-18 11:30:36	\N
7	5	4	Sedan	سيدان	1	2025-03-18 11:31:10	2025-03-18 11:31:10	\N
8	5	4	SUV	سيارات الدفع الرباعي	1	2025-03-18 11:31:37	2025-03-18 11:31:37	\N
9	5	5	Yes	نعم	1	2025-03-18 11:32:28	2025-03-18 11:32:28	\N
10	5	5	No	لا	1	2025-03-18 11:32:59	2025-03-18 11:32:59	\N
11	5	6	Petrol	بنزين	1	2025-03-18 11:34:39	2025-03-18 11:34:39	\N
12	5	6	Diesel	ديزل	1	2025-03-18 11:35:21	2025-03-18 11:35:21	\N
13	5	1	Toyota Supra	تويوتا سوبرا	1	2025-03-19 15:06:31	2025-03-19 15:06:31	\N
25	5	1	Aston Martin DB9	Aston Martin DB9	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
26	5	1	Aston Martin Vantage	Aston Martin Vantage	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
27	5	1	Audi A1	Audi A1	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
28	5	1	Audi A3	Audi A3	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
29	5	1	Audi A5	Audi A5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
30	5	1	Audi A6	Audi A6	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
31	5	1	Audi A7	Audi A7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
32	5	1	Audi A8	Audi A8	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
33	5	1	Audi Audi TT	Audi Audi TT	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
34	5	1	Audi Q3	Audi Q3	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
35	5	1	Audi Q5	Audi Q5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
36	5	1	Audi Q7	Audi Q7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
37	5	1	Audi R8	Audi R8	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
38	5	1	Audi RS4	Audi RS4	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
39	5	1	Audi RS5	Audi RS5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
40	5	1	Audi RS6	Audi RS6	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
41	5	1	Audi RS7	Audi RS7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
42	5	1	Audi S3	Audi S3	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
43	5	1	Audi S5	Audi S5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
44	5	1	Audi S6	Audi S6	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
45	5	1	Audi S7	Audi S7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
46	5	1	Audi S8	Audi S8	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
47	5	1	Bentley Arnage	Bentley Arnage	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
48	5	1	Bentley Continental	Bentley Continental	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
49	5	1	Bentley Continental GT	Bentley Continental GT	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
50	5	1	Bentley Continental GTC	Bentley Continental GTC	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
51	5	1	Bentley Flying Spur	Bentley Flying Spur	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
52	5	1	Bentley Mulsanne	Bentley Mulsanne	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
53	5	1	BMW 1-Series	BMW 1-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
54	5	1	BMW 2-Series	BMW 2-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
55	5	1	Alfa Romeo 146	Alfa Romeo 146	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
56	5	1	Alfa Romeo 147	Alfa Romeo 147	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
57	5	1	Alfa Romeo 156	Alfa Romeo 156	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
58	5	1	Alfa Romeo 166	Alfa Romeo 166	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
59	5	1	Alfa Romeo 33	Alfa Romeo 33	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
60	5	1	Alfa Romeo 4C	Alfa Romeo 4C	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
61	5	1	Alfa Romeo 8C Competizione	Alfa Romeo 8C Competizione	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
62	5	1	Alfa Romeo 8C Competizione Coupe	Alfa Romeo 8C Competizione Coupe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
63	5	1	Alfa Romeo 8C Spider	Alfa Romeo 8C Spider	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
64	5	1	Alfa Romeo 90	Alfa Romeo 90	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
65	5	1	Baic A1	Baic A1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
66	5	1	Audi A2	Audi A2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
67	5	1	Audi A3 E-Tron	Audi A3 E-Tron	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
68	5	1	Audi A4 All Road Quattro	Audi A4 All Road Quattro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
69	5	1	Audi A4 All Road Quattro	Audi A4 All Road Quattro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
70	5	1	Baic A5	Baic A5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
71	5	1	Audi A6 All Road Quattro	Audi A6 All Road Quattro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
72	5	1	Bentley Azure	Bentley Azure	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
73	5	1	Alpina B10	Alpina B10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
74	5	1	Alpina B3	Alpina B3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
75	5	1	Alpina B3 (2007)	Alpina B3 (2007)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
76	5	1	Alpina B3 (2013)	Alpina B3 (2013)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
77	5	1	Alpina B4	Alpina B4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
17	14	8	Land	أرض	1	2025-03-20 10:58:14	2025-04-22 09:53:06	\N
15	14	8	Commercial	تجاري	1	2025-03-20 10:57:32	2025-04-22 09:52:30	\N
19	14	10	Furnished	Furnished	1	2025-03-20 11:00:06	2025-04-10 06:57:03	\N
20	14	10	Unfurnished	Unfurnished	1	2025-03-20 11:00:28	2025-04-10 06:57:37	\N
21	14	11	Maids Room	Maids Room	1	2025-03-20 11:00:54	2025-04-10 06:59:18	\N
22	14	11	Private Pool	Private Pool	1	2025-03-20 11:01:19	2025-04-10 06:59:35	\N
23	14	11	Balcony	Balcony	1	2025-03-20 11:01:40	2025-04-10 06:59:49	\N
24	14	11	Private Garden	Private Garden	1	2025-03-20 11:02:00	2025-04-10 07:00:02	\N
4	5	2	American Spec	المواصفات الاستوائية	1	2025-03-18 11:29:32	2025-04-10 08:41:23	\N
16	14	8	Farm	مزرعة	1	2025-03-20 10:57:52	2025-04-22 09:52:08	\N
78	5	1	Alpina B5	Alpina B5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
79	5	1	Alpina B5 (2010)	Alpina B5 (2010)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
80	5	1	Alpina B6	Alpina B6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
81	5	1	Alpina B6 (2012)	Alpina B6 (2012)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
82	5	1	Alpina B7	Alpina B7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
83	5	1	Alpina B7 (2009)	Alpina B7 (2009)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
84	5	1	Alfa Romeo Brera	Alfa Romeo Brera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
85	5	1	Bentley Brooklands	Bentley Brooklands	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
86	5	1	Bentley Continental Flying Spur	Bentley Continental Flying Spur	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
87	5	1	Bentley Continental Super Sports	Bentley Continental Super Sports	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
88	5	1	Alpina D10	Alpina D10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
89	5	1	Aston Martin Cygnet	Aston Martin Cygnet	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
90	5	1	Alpina D3	Alpina D3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
91	5	1	Alpina D3 (2013)	Alpina D3 (2013)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
92	5	1	Alpina D4	Alpina D4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
93	5	1	Alpina D5	Alpina D5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
94	5	1	Aston Martin DB7	Aston Martin DB7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
95	5	1	Aston Martin DBS	Aston Martin DBS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
96	5	1	Ashok Falcon	Ashok Falcon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
97	5	1	Artega GT	Artega GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
98	5	1	Alfa Romeo GT	Alfa Romeo GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
99	5	1	Alfa Romeo GTV	Alfa Romeo GTV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
100	5	1	Ashok Leyland	Ashok Leyland	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
101	5	1	Alfa Romeo Mito	Alfa Romeo Mito	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
102	5	1	Bentley New Continental GT	Bentley New Continental GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
103	5	1	Bentley New Continental GTC	Bentley New Continental GTC	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
104	5	1	Aston Martin ONE-77	Aston Martin ONE-77	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
105	5	1	Alpina Roadster	Alpina Roadster	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
106	5	1	Alpina Roadster S	Alpina Roadster S	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
107	5	1	Audi RS3	Audi RS3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
108	5	1	Audi RS8	Audi RS8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
109	5	1	Audi S4	Audi S4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
110	5	1	Alfa Romeo Spider	Alfa Romeo Spider	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
111	5	1	Audi TT	Audi TT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
112	5	1	Audi TTS	Audi TTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
113	5	1	Bentley Turbo	Bentley Turbo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
114	5	1	Aston Martin V12 Vantage	Aston Martin V12 Vantage	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
115	5	1	Aston Martin V8 Vantage	Aston Martin V8 Vantage	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
116	5	1	Aston Martin Virage	Aston Martin Virage	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
117	5	1	Alpina XD3	Alpina XD3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
118	5	1	Aston Martin Zagato	Aston Martin Zagato	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
119	5	1	Aston Martin Rapide	Aston Martin Rapide	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
120	5	1	Aston Martin Vanquish	Aston Martin Vanquish	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
121	5	1	BMW 3-Series	BMW 3-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
122	5	1	BMW 4-Series	BMW 4-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
123	5	1	BMW 5-Series	BMW 5-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
124	5	1	BMW 6-Series	BMW 6-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
125	5	1	BMW 7-Series	BMW 7-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
126	5	1	BMW M2	BMW M2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
127	5	1	BMW M3	BMW M3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
128	5	1	BMW M4	BMW M4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
129	5	1	BMW M5	BMW M5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
130	5	1	BMW M6	BMW M6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
131	5	1	BMW X 4	BMW X 4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
132	5	1	BMW X1	BMW X1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
133	5	1	BMW X3	BMW X3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
134	5	1	BMW X4	BMW X4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
135	5	1	BMW X5	BMW X5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
136	5	1	BMW X5 M	BMW X5 M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
137	5	1	BMW X6	BMW X6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
138	5	1	BMW X6 M	BMW X6 M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
139	5	1	Cadillac ATS	Cadillac ATS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
140	5	1	Cadillac ATS-V	Cadillac ATS-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
141	5	1	Cadillac CTS	Cadillac CTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
142	5	1	Cadillac CTS-V	Cadillac CTS-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
143	5	1	Cadillac Escalade	Cadillac Escalade	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
144	5	1	Cadillac XTS	Cadillac XTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
145	5	1	Chevrolet Camaro	Chevrolet Camaro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
146	5	1	Chevrolet Caprice	Chevrolet Caprice	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
147	5	1	Chevrolet Captiva	Chevrolet Captiva	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
148	5	1	BMW 2er Gran Tourer	BMW 2er Gran Tourer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
149	5	1	BMW 3er GT	BMW 3er GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
150	5	1	BMW 5er GT	BMW 5er GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
151	5	1	Cadillac 62	Cadillac 62	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
152	5	1	BMW 8-Series	BMW 8-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
153	5	1	Chery A11 WindCloud	Chery A11 WindCloud	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
154	5	1	Chery Arrizo 7	Chery Arrizo 7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
155	5	1	Chevrolet Astro	Chevrolet Astro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
156	5	1	Chevrolet Avalanche	Chevrolet Avalanche	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
157	5	1	Chevrolet Aveo	Chevrolet Aveo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
158	5	1	Chevrolet Aveo5	Chevrolet Aveo5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
159	5	1	Chevrolet Barina	Chevrolet Barina	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
160	5	1	Chevrolet Blazer	Chevrolet Blazer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
161	5	1	Cadillac BLS	Cadillac BLS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
162	5	1	Brilliance BS4	Brilliance BS4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
163	5	1	Brilliance BS6	Brilliance BS6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
164	5	1	Chevrolet Caravan	Chevrolet Caravan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
165	5	1	Cadillac Catera	Cadillac Catera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
166	5	1	Chevrolet Cavalier	Chevrolet Cavalier	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
167	5	1	Buick Century	Buick Century	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
168	5	1	Caterham Classic 7	Caterham Classic 7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
169	5	1	Changan CS35	Changan CS35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
170	5	1	Changan CS75	Changan CS75	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
171	5	1	Cadillac Deville	Cadillac Deville	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
172	5	1	Cadillac DTS	Cadillac DTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
173	5	1	Chery E5	Chery E5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
174	5	1	Chery E8	Chery E8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
175	5	1	Changan EADO	Changan EADO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
176	5	1	Cadillac Eldorado	Cadillac Eldorado	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
177	5	1	Buick Enclave	Buick Enclave	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
178	5	1	Cadillac ESV	Cadillac ESV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
179	5	1	BYD F3	BYD F3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
180	5	1	BYD F3-AT	BYD F3-AT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
181	5	1	BYD F3R	BYD F3R	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
182	5	1	BYD F6	BYD F6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
183	5	1	Brilliance FSV	Brilliance FSV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
184	5	1	Brilliance FRV Cross	Brilliance FRV Cross	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
185	5	1	Brilliance FRV	Brilliance FRV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
186	5	1	Bugatti Grand Sport	Bugatti Grand Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
187	5	1	Brilliance H530	Brilliance H530	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
188	5	1	BMW I3	BMW I3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
189	5	1	BMW I8	BMW I8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
190	5	1	Brilliance Jinbei Hammer Head	Brilliance Jinbei Hammer Head	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
191	5	1	Buick Lacrosse	Buick Lacrosse	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
192	5	1	Buick Lesabre	Buick Lesabre	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
193	5	1	Buick Park Avenue	Buick Park Avenue	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
194	5	1	Buick Rainier	Buick Rainier	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
195	5	1	Buick Regal	Buick Regal	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
196	5	1	Chery S11 QQ	Chery S11 QQ	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
197	5	1	BYD S6	BYD S6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
198	5	1	Caterham Seven	Caterham Seven	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
199	5	1	Cadillac Seville	Cadillac Seville	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
200	5	1	Cadillac SLS	Cadillac SLS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
201	5	1	Caterham Super 7	Caterham Super 7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
202	5	1	Cadillac STS	Cadillac STS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
203	5	1	Cadillac STS-V	Cadillac STS-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
204	5	1	Buick Super-Series	Buick Super-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
205	5	1	Bugatti Super Sport	Bugatti Super Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
206	5	1	Chery T11 Tiggo	Chery T11 Tiggo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
207	5	1	Chery Tiggo 5	Chery Tiggo 5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
208	5	1	Chery Tiggo	Chery Tiggo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
209	5	1	Brilliance V5	Brilliance V5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
210	5	1	Chery V5 Crossover	Chery V5 Crossover	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
211	5	1	Bugatti Veyron	Bugatti Veyron	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
212	5	1	Bugatti Vitesse	Bugatti Vitesse	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
213	5	1	Cadillac XLR	Cadillac XLR	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
214	5	1	Cadillac XLR-V	Cadillac XLR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
215	5	1	BMW Z3	BMW Z3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
216	5	1	BMW Z4	BMW Z4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
217	5	1	BMW Z8	BMW Z8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
218	5	1	Chevrolet Corvette	Chevrolet Corvette	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
219	5	1	Chevrolet Cruze	Chevrolet Cruze	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
220	5	1	Chevrolet Impala	Chevrolet Impala	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
221	5	1	Chevrolet Malibu	Chevrolet Malibu	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
222	5	1	Chevrolet Silverado	Chevrolet Silverado	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
223	5	1	Chevrolet Sonic	Chevrolet Sonic	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
224	5	1	Chevrolet Spark	Chevrolet Spark	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
225	5	1	Chevrolet Suburban	Chevrolet Suburban	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
226	5	1	Chevrolet Tahoe	Chevrolet Tahoe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
227	5	1	Chevrolet Traverse	Chevrolet Traverse	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
228	5	1	Chevrolet Trax	Chevrolet Trax	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
229	5	1	Chrysler 200	Chrysler 200	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
230	5	1	Chrysler 200C	Chrysler 200C	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
231	5	1	Chrysler 300C	Chrysler 300C	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
232	5	1	Chrysler 300M	Chrysler 300M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
387	5	1	Ferrari LA	Ferrari LA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
233	5	1	Chrysler 300 M	Chrysler 300 M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
234	5	1	Chrysler Aspen	Chrysler Aspen	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
235	5	1	Chrysler Avenger	Chrysler Avenger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
236	5	1	Citroen AX	Citroen AX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
237	5	1	Citroen Axel	Citroen Axel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
238	5	1	Citroen Berlingo PKW	Citroen Berlingo PKW	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
239	5	1	Citroen Berlingo	Citroen Berlingo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
240	5	1	Citroen C1	Citroen C1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
241	5	1	Citroen C2	Citroen C2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
242	5	1	Citroen C3	Citroen C3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
243	5	1	Citroen C3 Picasso	Citroen C3 Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
244	5	1	Citroen C4	Citroen C4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
245	5	1	Citroen C4 AirCross	Citroen C4 AirCross	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
246	5	1	Citroen C4 Cactus	Citroen C4 Cactus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
247	5	1	Citroen C4 Picasso	Citroen C4 Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
248	5	1	Citroen C5	Citroen C5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
249	5	1	Citroen C6	Citroen C6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
250	5	1	Citroen C-Crosser	Citroen C-Crosser	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
251	5	1	China Automobile CEO	China Automobile CEO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
252	5	1	Citroen C-Elysee	Citroen C-Elysee	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
253	5	1	Chrysler Centura	Chrysler Centura	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
254	5	1	Chrysler Charger	Chrysler Charger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
255	5	1	Chevrolet Chevy	Chevrolet Chevy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
256	5	1	Chevrolet Cobalt	Chevrolet Cobalt	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
257	5	1	Chevrolet Colorado	Chevrolet Colorado	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
258	5	1	Chrysler Concorde	Chrysler Concorde	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
259	5	1	Chrysler Cordoba	Chrysler Cordoba	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
260	5	1	Chrysler Crossfire	Chrysler Crossfire	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
261	5	1	Chevrolet CSV	Chevrolet CSV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
262	5	1	Citroen C-Zero	Citroen C-Zero	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
263	5	1	Dacia Dokker	Dacia Dokker	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
264	5	1	Citroen DS3	Citroen DS3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
265	5	1	Citroen DS4	Citroen DS4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
266	5	1	Citroen DS5	Citroen DS5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
267	5	1	Chevrolet Elcamino	Chevrolet Elcamino	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
268	5	1	Chevrolet Epica	Chevrolet Epica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
269	5	1	Chevrolet Equinox	Chevrolet Equinox	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
270	5	1	Chevrolet Evanda	Chevrolet Evanda	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
271	5	1	Chevrolet Explorer	Chevrolet Explorer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
272	5	1	Chevrolet Express	Chevrolet Express	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
273	5	1	Chrysler Grand Voyager	Chrysler Grand Voyager	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
274	5	1	Chevrolet HHR	Chevrolet HHR	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
275	5	1	Chrysler Intrepid	Chrysler Intrepid	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
276	5	1	Chevrolet Kalos	Chevrolet Kalos	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
277	5	1	Chevrolet Lacetti	Chevrolet Lacetti	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
278	5	1	Chrysler Lebaron	Chrysler Lebaron	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
279	5	1	Chrysler LHS	Chrysler LHS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
280	5	1	Dacia Lodgy	Dacia Lodgy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
281	5	1	Chevrolet Lumina	Chevrolet Lumina	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
282	5	1	Chevrolet Matiz	Chevrolet Matiz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
283	5	1	Citroen Nemo PKW	Citroen Nemo PKW	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
284	5	1	Chrysler Neon	Chrysler Neon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
285	5	1	Chrysler Newport	Chrysler Newport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
286	5	1	Chevrolet Nubira	Chevrolet Nubira	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
287	5	1	Chevrolet Optra	Chevrolet Optra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
288	5	1	Chevrolet Orlando	Chevrolet Orlando	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
289	5	1	Chrysler Pacifica	Chrysler Pacifica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
290	5	1	Citroen Picasso	Citroen Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
291	5	1	Chrysler Pick Up	Chrysler Pick Up	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
292	5	1	Chevrolet Pick Up	Chevrolet Pick Up	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
293	5	1	Citroen Pluriel	Citroen Pluriel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
294	5	1	Chrysler Prowler	Chrysler Prowler	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
295	5	1	Chrysler PT Cruiser	Chrysler PT Cruiser	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
296	5	1	Chevrolet Rezzo	Chevrolet Rezzo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
297	5	1	Citroen Saxo	Citroen Saxo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
298	5	1	Chrysler Sebring	Chrysler Sebring	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
299	5	1	Chevrolet SSR	Chevrolet SSR	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
300	5	1	Chrysler Stratus	Chrysler Stratus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
301	5	1	Chevrolet Terrain	Chevrolet Terrain	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
302	5	1	Chrysler Town	Chrysler Town	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
303	5	1	Chevrolet Tracker	Chevrolet Tracker	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
304	5	1	Chevrolet Trans Sport	Chevrolet Trans Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
305	5	1	Chevrolet T-Series	Chevrolet T-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
306	5	1	China Automobile UFO	China Automobile UFO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
307	5	1	Chevrolet Uplander	Chevrolet Uplander	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
469	5	1	Ford Megastar	Ford Megastar	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
308	5	1	Chevrolet Venture	Chevrolet Venture	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
309	5	1	CMC Veryca	CMC Veryca	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
310	5	1	Chevrolet Volt	Chevrolet Volt	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
311	5	1	Chrysler Voyager	Chrysler Voyager	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
312	5	1	Citroen Xsara	Citroen Xsara	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
313	5	1	Citroen Xsara Picasso	Citroen Xsara Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
314	5	1	CMC Z7	CMC Z7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
315	5	1	Daihatsu Materia	Daihatsu Materia	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
316	5	1	Daihatsu Sirion	Daihatsu Sirion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
317	5	1	Daihatsu Terios	Daihatsu Terios	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
318	5	1	Dodge Challenger	Dodge Challenger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
319	5	1	Dodge Charger	Dodge Charger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
320	5	1	Dodge Durango	Dodge Durango	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
321	5	1	Ferrari 488	Ferrari 488	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
322	5	1	Fiat 500	Fiat 500	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
323	5	1	Ferrari 126	Ferrari 126	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
324	5	1	Fiat 127	Fiat 127	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
325	5	1	Fiat 131	Fiat 131	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
326	5	1	Fiat 132	Fiat 132	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
327	5	1	Fiat 133	Fiat 133	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
328	5	1	Fiat 1400	Fiat 1400	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
329	5	1	Ferrari 206	Ferrari 206	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
330	5	1	Ferrari 306	Ferrari 306	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
331	5	1	Ferrari 308	Ferrari 308	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
332	5	1	Ferrari 355	Ferrari 355	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
333	5	1	Ferrari 360	Ferrari 360	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
334	5	1	Ferrari 360 Modena F1	Ferrari 360 Modena F1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
335	5	1	Ferrari 430	Ferrari 430	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
336	5	1	Ferrari 456	Ferrari 456	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
337	5	1	Ferrari 458	Ferrari 458	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
338	5	1	Fiat 500L	Fiat 500L	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
339	5	1	Ferrari 512	Ferrari 512	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
340	5	1	Ferrari 550 Barchetta	Ferrari 550 Barchetta	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
341	5	1	Ferrari 550 Maranello	Ferrari 550 Maranello	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
342	5	1	Ferrari 575	Ferrari 575	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
343	5	1	Ferrari 575M	Ferrari 575M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
344	5	1	Ferrari 599	Ferrari 599	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
345	5	1	Ferrari 599 GTB	Ferrari 599 GTB	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
346	5	1	Ferrari 612	Ferrari 612	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
347	5	1	Fiat Abarth	Fiat Abarth	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
348	5	1	Daihatsu Applause	Daihatsu Applause	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
349	5	1	Dodge Avenger	Dodge Avenger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
350	5	1	Fiat Barchrtta	Fiat Barchrtta	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
351	5	1	Fiat Brava	Fiat Brava	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
352	5	1	Fiat Bravo	Fiat Bravo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
353	5	1	Dodge Caliber	Dodge Caliber	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
354	5	1	Ferrari California	Ferrari California	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
355	5	1	Ferrari California T	Ferrari California T	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
356	5	1	Dodge Caravan	Dodge Caravan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
357	5	1	Daihatsu Charade	Daihatsu Charade	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
358	5	1	Daewoo Cielo	Daewoo Cielo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
359	5	1	Daihatsu Copen	Daihatsu Copen	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
360	5	1	Fiat Croma	Fiat Croma	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
361	5	1	Eicher Cruiser	Eicher Cruiser	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
362	5	1	Daihatsu Cuore	Daihatsu Cuore	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
363	5	1	Dodge Dakota	Dodge Dakota	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
364	5	1	Dodge Dart	Dodge Dart	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
365	5	1	Daihatsu Deluxe	Daihatsu Deluxe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
366	5	1	Fiat Doblo	Fiat Doblo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
367	5	1	Fiat Doblo Neu	Fiat Doblo Neu	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
368	5	1	Fiat Ducato	Fiat Ducato	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
369	5	1	Fiat Duna	Fiat Duna	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
370	5	1	Ferrari Enzo	Ferrari Enzo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
371	5	1	Daewoo Espero	Daewoo Espero	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
372	5	1	Daewoo Evanda	Daewoo Evanda	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
373	5	1	Ferrari F12	Ferrari F12	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
374	5	1	Ferrari F40	Ferrari F40	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
375	5	1	Ferrari F430	Ferrari F430	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
376	5	1	Ferrari F50	Ferrari F50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
377	5	1	Ferrari F575M F1	Ferrari F575M F1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
378	5	1	Ferrari F575 SuperAmerica	Ferrari F575 SuperAmerica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
379	5	1	Ferrari FF	Ferrari FF	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
380	5	1	Fiat Fiorino	Fiat Fiorino	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
381	5	1	Fiat Grande Punto	Fiat Grande Punto	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
382	5	1	Daihatsu Gran Max	Daihatsu Gran Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
383	5	1	Ferrari GTO	Ferrari GTO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
384	5	1	Dongfeng H30 Cross	Dongfeng H30 Cross	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
385	5	1	Dodge Journey	Dodge Journey	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
386	5	1	Daewoo Kalos	Daewoo Kalos	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
388	5	1	Daewoo Lacetti	Daewoo Lacetti	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
389	5	1	Daewoo Lanos	Daewoo Lanos	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
390	5	1	Dodge Laramie	Dodge Laramie	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
391	5	1	Daewoo Leganza	Daewoo Leganza	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
392	5	1	Dacia Logan	Dacia Logan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
393	5	1	Dacia Logan MCV	Dacia Logan MCV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
394	5	1	Dodge Magnum	Dodge Magnum	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
395	5	1	Daewoo Matiz	Daewoo Matiz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
396	5	1	Daihatsu Mira	Daihatsu Mira	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
397	5	1	Daewoo Musso	Daewoo Musso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
398	5	1	Dodge Neon	Dodge Neon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
399	5	1	Daewoo Nova	Daewoo Nova	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
400	5	1	Daewoo Nubira	Daewoo Nubira	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
401	5	1	Daewoo Racer	Daewoo Racer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
402	5	1	Dodge Ram	Dodge Ram	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
403	5	1	Daewoo Rexton	Daewoo Rexton	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
404	5	1	Daewoo Rezzo	Daewoo Rezzo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
405	5	1	Daihatsu Rocky	Daihatsu Rocky	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
406	5	1	Dongfeng S30	Dongfeng S30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
407	5	1	Dacia Sandero	Dacia Sandero	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
408	5	1	Ferrari SuperAmerica	Ferrari SuperAmerica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
409	5	1	Daewoo Tacuma	Daewoo Tacuma	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
410	5	1	Daihatsu Trevis	Daihatsu Trevis	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
411	5	1	Dodge Viper	Dodge Viper	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
412	5	1	Daihatsu YRV	Daihatsu YRV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
413	5	1	Fiat LINEA	Fiat LINEA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
414	5	1	Ford Eco Sport	Ford Eco Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
415	5	1	Ford Edge	Ford Edge	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
416	5	1	Ford Escape	Ford Escape	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
417	5	1	Ford Expedition	Ford Expedition	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
418	5	1	Ford Explorer	Ford Explorer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
419	5	1	Ford F150	Ford F150	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
420	5	1	Ford Fiesta	Ford Fiesta	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
421	5	1	Ford Figo	Ford Figo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
422	5	1	Ford Flex	Ford Flex	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
423	5	1	Ford Focus	Ford Focus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
424	5	1	Ford Fusion	Ford Fusion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
425	5	1	Ford Mustang	Ford Mustang	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
426	5	1	Ford Ranger	Ford Ranger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
427	5	1	Ford Taurus	Ford Taurus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
428	5	1	GMC Acadia	GMC Acadia	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
429	5	1	GMC Sierra 1500	GMC Sierra 1500	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
430	5	1	GMC Yukon	GMC Yukon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
431	5	1	Ford B-Max	Ford B-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
432	5	1	Ford Bronco	Ford Bronco	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
433	5	1	GMC Canyon	GMC Canyon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
434	5	1	Geely CK	Geely CK	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
435	5	1	Ford C-Max	Ford C-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
436	5	1	Ford Contour	Ford Contour	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
437	5	1	Ford Crown Victoria	Ford Crown Victoria	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
438	5	1	Great Wall Deer	Great Wall Deer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
439	5	1	GMC Denali	GMC Denali	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
440	5	1	Geely Emgrand 8	Geely Emgrand 8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
441	5	1	Geely Emgrand X7	Geely Emgrand X7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
442	5	1	GMC Envoy	GMC Envoy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
443	5	1	Ford Escort	Ford Escort	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
444	5	1	Ford Everest	Ford Everest	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
445	5	1	Ford Excursion	Ford Excursion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
446	5	1	Ford Expedition EL	Ford Expedition EL	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
447	5	1	Ford Fairlane	Ford Fairlane	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
448	5	1	Ford Five Hundred	Ford Five Hundred	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
449	5	1	Ford Focus C-Max	Ford Focus C-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
450	5	1	Ford Focus Electric	Ford Focus Electric	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
451	5	1	Ford Freestar	Ford Freestar	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
452	5	1	Ford F-Series	Ford F-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
453	5	1	GAC GA3	GAC GA3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
454	5	1	GAC GA5	GAC GA5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
455	5	1	Ford Galaxy	Ford Galaxy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
456	5	1	Geely GC2	Geely GC2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
457	5	1	Geely GC6	Geely GC6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
458	5	1	Geely GC7	Geely GC7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
459	5	1	Ford Granada	Ford Granada	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
460	5	1	GAC GS5	GAC GS5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
461	5	1	Geely GX2	Geely GX2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
462	5	1	Fiat IDEA	Fiat IDEA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
463	5	1	GMC Jimmy	GMC Jimmy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
464	5	1	Ford KA	Ford KA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
465	5	1	Fisker Karma	Fisker Karma	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
466	5	1	Ford Kuga	Ford Kuga	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
467	5	1	Fiat Marea	Fiat Marea	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
468	5	1	Ford Maverick	Ford Maverick	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
470	5	1	Ford Monarch	Ford Monarch	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
471	5	1	Ford Mondeo	Ford Mondeo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
472	5	1	Fiat Multipla	Fiat Multipla	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
473	5	1	Ford Mustang GT	Ford Mustang GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
474	5	1	Ford Orion	Ford Orion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
475	5	1	Fiat Other	Fiat Other	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
476	5	1	Fiat Palio	Fiat Palio	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
477	5	1	Fiat Panda	Fiat Panda	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
478	5	1	Ford PickUp	Ford PickUp	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
479	5	1	Ford Probe	Ford Probe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
480	5	1	Fiat Punto	Fiat Punto	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
481	5	1	Fiat Punto Evo	Fiat Punto Evo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
482	5	1	Fiat Qubo	Fiat Qubo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
483	5	1	Fiat Regata	Fiat Regata	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
484	5	1	Fiat Ritmo	Fiat Ritmo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
485	5	1	GMC Safari	GMC Safari	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
486	5	1	GMC Savana	GMC Savana	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
487	5	1	Fiat Sedici	Fiat Sedici	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
488	5	1	Fiat Seicento	Fiat Seicento	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
489	5	1	Fiat Siena	Fiat Siena	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
490	5	1	GMC Sierra	GMC Sierra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
491	5	1	Ford Sierra	Ford Sierra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
492	5	1	Ford S-Max	Ford S-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
493	5	1	Fiat Stilo	Fiat Stilo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
494	5	1	Ford Sport Trac	Ford Sport Trac	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
495	5	1	Ford Streetka	Ford Streetka	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
496	5	1	Foton SUP	Foton SUP	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
497	5	1	GMC Suburban	GMC Suburban	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
498	5	1	Ford Tempo	Ford Tempo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
499	5	1	Fiat Tempra	Fiat Tempra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
500	5	1	Ford Thunderbird	Ford Thunderbird	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
501	5	1	Ford Tourneo Connect	Ford Tourneo Connect	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
502	5	1	Ford Tourneo Courier	Ford Tourneo Courier	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
503	5	1	Ford Transit	Ford Transit	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
504	5	1	Foton Tunland	Foton Tunland	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
505	5	1	Fiat UNO	Fiat UNO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
506	5	1	Foton View C1 Minibus	Foton View C1 Minibus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
507	5	1	Ford Windstar	Ford Windstar	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
508	5	1	GMC Yukon Xl	GMC Yukon Xl	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
509	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
510	5	1	Honda Accord	Honda Accord	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
511	5	1	Honda CR-V	Honda CR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
512	5	1	Honda Jazz	Honda Jazz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
513	5	1	Honda Pilot	Honda Pilot	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
514	5	1	Hyundai Accent	Hyundai Accent	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
515	5	1	Hyundai Azera	Hyundai Azera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
516	5	1	Hyundai Centennial	Hyundai Centennial	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
517	5	1	Hyundai Elantra	Hyundai Elantra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
518	5	1	Hyundai Genesis	Hyundai Genesis	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
519	5	1	Hyundai Grand i10	Hyundai Grand i10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
520	5	1	Hyundai Grand Santa Fe	Hyundai Grand Santa Fe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
521	5	1	Hyundai i10	Hyundai i10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
522	5	1	Hyundai i30	Hyundai i30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
523	5	1	Hyundai i40	Hyundai i40	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
524	5	1	Hyundai Santa Fe	Hyundai Santa Fe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
525	5	1	Hyundai Sonata	Hyundai Sonata	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
526	5	1	Hyundai Tucson	Hyundai Tucson	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
527	5	1	Infiniti FX35	Infiniti FX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
528	5	1	Infiniti FX37	Infiniti FX37	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
529	5	1	Infiniti FX50	Infiniti FX50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
530	5	1	Infiniti G	Infiniti G	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
531	5	1	Infiniti Q30	Infiniti Q30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
532	5	1	Infiniti Q50	Infiniti Q50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
533	5	1	Infiniti Q60	Infiniti Q60	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
534	5	1	Infiniti Q70	Infiniti Q70	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
535	5	1	Infiniti QX50	Infiniti QX50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
536	5	1	Infiniti QX56	Infiniti QX56	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
537	5	1	Infiniti QX60	Infiniti QX60	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
538	5	1	Infiniti QX70	Infiniti QX70	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
539	5	1	Infiniti QX80	Infiniti QX80	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
540	5	1	Hyundai Atos Prime	Hyundai Atos Prime	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
541	5	1	Honda City	Honda City	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
542	5	1	Honda Civic Hybrid	Honda Civic Hybrid	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
543	5	1	Honda Civic IMA	Honda Civic IMA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
544	5	1	Hyundai County	Hyundai County	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
545	5	1	Hyundai Coupe	Hyundai Coupe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
546	5	1	Honda CR-X	Honda CR-X	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
547	5	1	Hyundai Crete	Hyundai Crete	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
548	5	1	Honda CR-Z	Honda CR-Z	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
549	5	1	Honda Crosstour	Honda Crosstour	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
550	5	1	Honda Element	Honda Element	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
551	5	1	Infiniti EX	Infiniti EX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
552	5	1	Infiniti EX35	Infiniti EX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
553	5	1	Hyundai Excel	Hyundai Excel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
554	5	1	Great Wall Florid	Great Wall Florid	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
555	5	1	Honda FR-V	Honda FR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
556	5	1	Infiniti FX	Infiniti FX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
557	5	1	Infiniti FX45	Infiniti FX45	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
558	5	1	Infiniti G35	Infiniti G35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
559	5	1	Infiniti G37	Infiniti G37	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
560	5	1	Hyundai Galloper	Hyundai Galloper	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
561	5	1	Hyundai Getz	Hyundai Getz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
562	5	1	Hyundai Grandeur	Hyundai Grandeur	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
563	5	1	Infiniti G-Series	Infiniti G-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
564	5	1	Hummer H1	Hummer H1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
565	5	1	Hummer H2	Hummer H2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
566	5	1	Hummer H3	Hummer H3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
567	5	1	Hummer H3T	Hummer H3T	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
568	5	1	Hummer HX	Hummer HX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
569	5	1	Honda HRV	Honda HRV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
570	5	1	Hyundai i20	Hyundai i20	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
571	5	1	Infiniti i30	Infiniti i30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
572	5	1	Infiniti i35	Infiniti i35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
573	5	1	Honda Insight	Honda Insight	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
574	5	1	Hyundai iX20	Hyundai iX20	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
575	5	1	Hyundai iX35	Hyundai iX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
576	5	1	Hyundai iX55	Hyundai iX55	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
577	5	1	Infiniti J30	Infiniti J30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
578	5	1	Infiniti JX	Infiniti JX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
579	5	1	Honda Legend	Honda Legend	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
580	5	1	Infiniti M	Infiniti M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
581	5	1	Hyundai Matrix	Hyundai Matrix	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
582	5	1	Honda MR-V	Honda MR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
583	5	1	Honda NSX	Honda NSX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
584	5	1	Honda Odyssey	Honda Odyssey	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
585	5	1	Honda Passport	Honda Passport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
586	5	1	Hyundai Pony	Hyundai Pony	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
587	5	1	Honda Prelude	Honda Prelude	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
588	5	1	Infiniti Q45	Infiniti Q45	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
589	5	1	Infiniti QX35	Infiniti QX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
590	5	1	Infiniti QX4	Infiniti QX4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
591	5	1	Honda Ridgeline	Honda Ridgeline	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
592	5	1	Honda S2000	Honda S2000	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
593	5	1	Honda Stream	Honda Stream	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
594	5	1	Honda S500	Honda S500	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
595	5	1	Hyundai Terracan	Hyundai Terracan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
596	5	1	Hyundai Tiburon	Hyundai Tiburon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
597	5	1	Hyundai Trajet	Hyundai Trajet	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
598	5	1	Hyundai Veloster	Hyundai Veloster	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
599	5	1	Hyundai Veracruz	Hyundai Veracruz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
600	5	1	Hyundai Verna	Hyundai Verna	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
601	5	1	Honda Vezel	Honda Vezel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
602	5	1	Honda Vigor	Honda Vigor	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
603	5	1	Great Wall Wingle	Great Wall Wingle	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
604	5	1	Infiniti X35	Infiniti X35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
605	5	1	Hyundai XG 30	Hyundai XG 30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
606	5	1	Hyundai XG300	Hyundai XG300	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
607	5	1	Hyundai XG350	Hyundai XG350	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
608	5	1	Honda Z	Honda Z	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
609	5	1	Jaguar F-Type	Jaguar F-Type	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
610	5	1	Jaguar S-Type	Jaguar S-Type	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
611	5	1	Jaguar XE	Jaguar XE	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
612	5	1	Jaguar XF	Jaguar XF	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
613	5	1	Jaguar XJ	Jaguar XJ	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
614	5	1	Jeep Cherokee	Jeep Cherokee	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
615	5	1	Jeep Compass	Jeep Compass	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
616	5	1	Jeep Grand Cherokee	Jeep Grand Cherokee	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
617	5	1	Jeep Renegade	Jeep Renegade	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
618	5	1	Jeep Wrangler	Jeep Wrangler	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
619	5	1	Kia Candenza	Kia Candenza	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
620	5	1	Kia Carens	Kia Carens	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
621	5	1	Kia Carnival	Kia Carnival	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
622	5	1	Kia Cerato	Kia Cerato	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
623	5	1	Kia Clarus	Kia Clarus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
624	5	1	Kia Mohave	Kia Mohave	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
625	5	1	Kia Optima	Kia Optima	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
626	5	1	Kia Picanto	Kia Picanto	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
627	5	1	Kia Quoris	Kia Quoris	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
628	5	1	Kia Rio	Kia Rio	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
629	5	1	Kia Sorento	Kia Sorento	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
630	5	1	Kia Soul	Kia Soul	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
631	5	1	Lada 111	Lada 111	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
632	5	1	Lada 1117	Lada 1117	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
633	5	1	Lada 1118	Lada 1118	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
634	5	1	Lada 1119	Lada 1119	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
635	5	1	Lada 112	Lada 112	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
636	5	1	Lamborghini 350	Lamborghini 350	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
637	5	1	Koenigsegg Agera	Koenigsegg Agera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
638	5	1	Isuzu Amigo	Isuzu Amigo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
639	5	1	Isuzu Ascender	Isuzu Ascender	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
640	5	1	Lamborghini Aventador	Lamborghini Aventador	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
641	5	1	Isuzu Axiom	Isuzu Axiom	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
642	5	1	Kia Borrego	Kia Borrego	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
643	5	1	Kia Carnival II	Kia Carnival II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
644	5	1	Koenigsegg CCX	Koenigsegg CCX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
645	5	1	Kia Ceed	Kia Ceed	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
646	5	1	Jeep Commanche	Jeep Commanche	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
647	5	1	Jeep Commander	Jeep Commander	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
648	5	1	Lamborghini Countach	Lamborghini Countach	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
649	5	1	Iveco Daily	Iveco Daily	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
650	5	1	Isuzu D-Max	Isuzu D-Max	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
651	5	1	Kia Forte	Kia Forte	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
652	5	1	Jaguar F-Pace	Jaguar F-Pace	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
653	5	1	Jeep Grand Wagoneer	Jeep Grand Wagoneer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
654	5	1	Lada Granta	Lada Granta	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
655	5	1	Jinbei H2	Jinbei H2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
656	5	1	Isuzu i Mark	Isuzu i Mark	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
657	5	1	Isuzu Impulse	Isuzu Impulse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
658	5	1	JAC J5	JAC J5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
659	5	1	JAC J4	JAC J4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
660	5	1	JAC J6	JAC J6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
661	5	1	Lada Kalina II	Lada Kalina II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
662	5	1	Kia Koup	Kia Koup	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
663	5	1	JAC LCV	JAC LCV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
664	5	1	JAC M1	JAC M1	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
665	5	1	JAC M5	JAC M5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
666	5	1	Kia Magentis	Kia Magentis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
667	5	1	Iveco Massif	Iveco Massif	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
668	5	1	King Long Mini Van	King Long Mini Van	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
669	5	1	International  MXT	International  MXT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
670	5	1	Lada Niva	Lada Niva	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
671	5	1	Isuzu NPR	Isuzu NPR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
672	5	1	Isuzu Oasis	Isuzu Oasis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
673	5	1	Kia Opirus	Kia Opirus	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
674	5	1	Jeep Patriot	Jeep Patriot	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
675	5	1	Lada Priora	Lada Priora	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
676	5	1	Kia Pride	Kia Pride	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
677	5	1	Isuzu Reward-NP	Isuzu Reward-NP	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
678	5	1	Isuzu Revert-NP	Isuzu Revert-NP	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
679	5	1	Isuzu Rodeo	Isuzu Rodeo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
680	5	1	Jeep Rubicon	Jeep Rubicon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
681	5	1	JAC S3	JAC S3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
682	5	1	Kia Sephia	Kia Sephia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
683	5	1	Kia Shuma II	Kia Shuma II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
684	5	1	Kia Soul EV	Kia Soul EV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
685	5	1	Jaguar Sovereign	Jaguar Sovereign	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
686	5	1	Kia Spectra	Kia Spectra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
687	5	1	Isuzu Stylus	Isuzu Stylus	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
688	5	1	Kia Sportage	Kia Sportage	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
689	5	1	Jinbei SY6483	Jinbei SY6483	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
690	5	1	Lada Taiga	Lada Taiga	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
691	5	1	Isuzu Trooper	Isuzu Trooper	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
692	5	1	Kia Venga	Kia Venga	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
693	5	1	Jeep Wagoneer	Jeep Wagoneer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
694	5	1	Jeep Wrangler Unlimited	Jeep Wrangler Unlimited	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
695	5	1	KTM X-BOW	KTM X-BOW	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
696	5	1	Jaguar XFR	Jaguar XFR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
697	5	1	Jaguar XFR-S	Jaguar XFR-S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
698	5	1	Jaguar XF-Type	Jaguar XF-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
699	5	1	Jaguar XJR	Jaguar XJR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
700	5	1	Jaguar XJ-Type	Jaguar XJ-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
701	5	1	Jaguar XK	Jaguar XK	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
702	5	1	Jaguar XKR	Jaguar XKR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
703	5	1	Jaguar XKR-S	Jaguar XKR-S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
704	5	1	Jaguar XK-Type	Jaguar XK-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
705	5	1	Jaguar X - Type	Jaguar X - Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
706	5	1	Jaguar X-Type	Jaguar X-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
707	5	1	Land Rover Range Rover	Land Rover Range Rover	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
708	5	1	Land Rover Range Rover Evoque	Land Rover Range Rover Evoque	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
709	5	1	Land Rover Range Rover Sport	Land Rover Range Rover Sport	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
710	5	1	Lexus ES	Lexus ES	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
711	5	1	Lexus IS	Lexus IS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
712	5	1	Lexus LS	Lexus LS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
713	5	1	Lexus LX	Lexus LX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
714	5	1	Lexus RX	Lexus RX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
715	5	1	Lincoln Continential	Lincoln Continential	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
716	5	1	Lincoln MKC	Lincoln MKC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
717	5	1	Lincoln MKX	Lincoln MKX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
718	5	1	Lincoln MKZ	Lincoln MKZ	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
719	5	1	Lincoln Navigator	Lincoln Navigator	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
720	5	1	Maserati Granturismo	Maserati Granturismo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
721	5	1	Maserati Quattroporte	Maserati Quattroporte	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
722	5	1	Mazda 2	Mazda 2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
723	5	1	Mazda 3	Mazda 3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
724	5	1	Mazda 6	Mazda 6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
725	5	1	Mazda CX-3	Mazda CX-3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
726	5	1	Mazda CX-5	Mazda CX-5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
727	5	1	Mazda CX-9	Mazda CX-9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
728	5	1	Maybach 57	Maybach 57	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
729	5	1	Maybach 62	Maybach 62	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
730	5	1	Mazda 626	Mazda 626	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
731	5	1	Mazda 6 Ultra	Mazda 6 Ultra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
732	5	1	Luxgen 7	Luxgen 7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
733	5	1	Mazda 929	Mazda 929	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
734	5	1	Mahindra Armada	Mahindra Armada	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
735	5	1	Lincoln Avaitor	Lincoln Avaitor	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
736	5	1	Mazda B-Series	Mazda B-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
737	5	1	Mazda BT-50	Mazda BT-50	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
738	5	1	Maserati Coupe	Maserati Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
739	5	1	Maserati Coupe / Spyder	Maserati Coupe / Spyder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
740	5	1	Lexus CT	Lexus CT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
741	5	1	Lexus CT 200H	Lexus CT 200H	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
742	5	1	Landwind CV-9	Landwind CV-9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
743	5	1	Mazda CX-7	Mazda CX-7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
744	5	1	Land Rover Defender	Land Rover Defender	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
745	5	1	Lancia Delta	Lancia Delta	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
746	5	1	Mazda Demio	Mazda Demio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
747	5	1	Lamborghini Diablo	Lamborghini Diablo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
748	5	1	Land Rover Discovery Sport	Land Rover Discovery Sport	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
749	5	1	Mazda E2000	Mazda E2000	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
750	5	1	Lotus Elan	Lotus Elan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
751	5	1	Lotus Elise	Lotus Elise	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
752	5	1	Lotus Esprit	Lotus Esprit	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
753	5	1	Lotus Europa	Lotus Europa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
754	5	1	Lotus Evora	Lotus Evora	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
755	5	1	Lotus Exige	Lotus Exige	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
756	5	1	Lancia Flavia	Lancia Flavia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
757	5	1	Land Rover Freelander	Land Rover Freelander	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
758	5	1	Land Rover Freelander V6	Land Rover Freelander V6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
759	5	1	Lancia FX-Series	Lancia FX-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
760	5	1	Lamborghini Gallardo	Lamborghini Gallardo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
761	5	1	Maserati Grancabrio	Maserati Grancabrio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
762	5	1	Maserati Ghibli	Maserati Ghibli	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
763	5	1	Maserati Gransport	Maserati Gransport	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
764	5	1	Lexus GS	Lexus GS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
765	5	1	Lamborghini Huracan	Lamborghini Huracan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
766	5	1	Land Rover HSE V8	Land Rover HSE V8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
767	5	1	Lexus IS-C	Lexus IS-C	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
768	5	1	Lexus IS-F	Lexus IS-F	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
769	5	1	Lexus LFA	Lexus LFA	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
770	5	1	Lamborghini LM	Lamborghini LM	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
771	5	1	Land Rover LR2	Land Rover LR2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
772	5	1	Land Rover LR3	Land Rover LR3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
773	5	1	Land Rover LR4	Land Rover LR4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
774	5	1	Lancia Lybra	Lancia Lybra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
775	5	1	Lincoln LS	Lincoln LS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
776	5	1	Maserati MC12	Maserati MC12	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
777	5	1	Mazda Miata	Mazda Miata	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
778	5	1	Lamborghini Miura	Lamborghini Miura	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
779	5	1	Lincoln MKS	Lincoln MKS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
780	5	1	Lincoln MKT	Lincoln MKT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
781	5	1	Lincoln MK-T	Lincoln MK-T	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
782	5	1	Lamborghini Murcielago	Lamborghini Murcielago	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
783	5	1	Mazda MPV	Mazda MPV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
784	5	1	Lancia Musa	Lancia Musa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
785	5	1	Mazda MX-3	Mazda MX-3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
786	5	1	Mazda MX-5	Mazda MX-5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
787	5	1	Mazda MX-6	Mazda MX-6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
788	5	1	Mazda Navajo	Mazda Navajo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
789	5	1	Lexus NX	Lexus NX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
790	5	1	Lancia Phedra	Lancia Phedra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
791	5	1	Mazda Premacy	Mazda Premacy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
792	5	1	Lexus RC	Lexus RC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
793	5	1	Lexus RC F	Lexus RC F	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
794	5	1	Landwind S	Landwind S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
795	5	1	Luxgen S5	Luxgen S5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
796	5	1	Lexus SC	Lexus SC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
797	5	1	Mahindra Scorpio	Mahindra Scorpio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
798	5	1	Maserati Spyder	Maserati Spyder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
799	5	1	Lancia Thema	Lancia Thema	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
800	5	1	Lancia Thesis	Lancia Thesis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
801	5	1	Lincoln Town Car	Lincoln Town Car	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
802	5	1	Luxgen U6	Luxgen U6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
803	5	1	Lancia Voyager	Lancia Voyager	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
804	5	1	Lancia Y	Lancia Y	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
805	5	1	Mercedes-Benz C 63 AMG	Mercedes-Benz C 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
806	5	1	Mercedes-Benz C-Class	Mercedes-Benz C-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
807	5	1	Mercedes-Benz E 63 AMG	Mercedes-Benz E 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
808	5	1	Mercedes-Benz E-Class	Mercedes-Benz E-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
809	5	1	Mercedes-Benz G-Class	Mercedes-Benz G-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
810	5	1	Mercedes-Benz GL-Class	Mercedes-Benz GL-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
811	5	1	Mercedes-Benz ML 63 AMG	Mercedes-Benz ML 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
812	5	1	Mercedes-Benz S 63 AMG	Mercedes-Benz S 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
813	5	1	Mercedes-Benz S-Class	Mercedes-Benz S-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
814	5	1	Mercedes-Benz Sl-Class	Mercedes-Benz Sl-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
815	5	1	Mini Cooper	Mini Cooper	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
816	5	1	Mini Cooper Clubman	Mini Cooper Clubman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
817	5	1	Mini Cooper Countryman	Mini Cooper Countryman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
818	5	1	Mercedes-Benz 190	Mercedes-Benz 190	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
819	5	1	Mercedes-Benz 240/260/280	Mercedes-Benz 240/260/280	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
820	5	1	MG 3	MG 3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
821	5	1	Mercedes-Benz 300/350/380	Mercedes-Benz 300/350/380	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
822	5	1	MG 350	MG 350	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
823	5	1	Mercedes-Benz 400/420	Mercedes-Benz 400/420	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
824	5	1	MG 5	MG 5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
825	5	1	Mercedes-Benz 500/560	Mercedes-Benz 500/560	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
826	5	1	Mclaren 540C	Mclaren 540C	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
827	5	1	Mclaren 570S	Mclaren 570S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
828	5	1	Mclaren 650S	Mclaren 650S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
829	5	1	MG 6	MG 6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
830	5	1	Mclaren 675LT	Mclaren 675LT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
831	5	1	MG 750	MG 750	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
832	5	1	Mercedes-Benz A 45 AMG	Mercedes-Benz A 45 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
833	5	1	Mercedes-Benz A-Class	Mercedes-Benz A-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
834	5	1	Mercedes-Benz B-Klasse Electric Drive	Mercedes-Benz B-Klasse Electric Drive	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
835	5	1	Mercedes-Benz CLA-Klasse	Mercedes-Benz CLA-Klasse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
836	5	1	Mercedes-Benz CLC-Class	Mercedes-Benz CLC-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
837	5	1	Mercedes-Benz CL-Class	Mercedes-Benz CL-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
838	5	1	Mercedes-Benz CLK-Class	Mercedes-Benz CLK-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
839	5	1	Mercedes-Benz CLS 63 AMG	Mercedes-Benz CLS 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
840	5	1	Mercedes-Benz CLS-Class	Mercedes-Benz CLS-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
841	5	1	Mercedes-Benz CLS Shooting Brake	Mercedes-Benz CLS Shooting Brake	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
842	5	1	Mini Cooper S	Mini Cooper S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
843	5	1	Mercury Cougar	Mercury Cougar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
844	5	1	Mini Coupe	Mini Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
845	5	1	Mercedes-Benz E-Series	Mercedes-Benz E-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
846	5	1	Mclaren F1	Mclaren F1	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
847	5	1	Mercedes-Benz G 63 AMG	Mercedes-Benz G 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
848	5	1	Mercedes-Benz G 65 AMG	Mercedes-Benz G 65 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
849	5	1	Mercedes-Benz GLA-Class	Mercedes-Benz GLA-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
850	5	1	Mercedes-Benz GLA-Klasse	Mercedes-Benz GLA-Klasse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
851	5	1	Mercedes-Benz GLC-Class	Mercedes-Benz GLC-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
852	5	1	Mercedes-Benz GLE	Mercedes-Benz GLE	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
853	5	1	Mercedes-Benz GLE 63 AMG	Mercedes-Benz GLE 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
854	5	1	Mercedes-Benz GLE-Class	Mercedes-Benz GLE-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
855	5	1	Mercedes-Benz GLE-Coupe	Mercedes-Benz GLE-Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
856	5	1	Mercedes-Benz GLK-Class	Mercedes-Benz GLK-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
857	5	1	Mercury Grand Marquis	Mercury Grand Marquis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
858	5	1	MG GS	MG GS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
859	5	1	Mercedes-Benz G-Series	Mercedes-Benz G-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
860	5	1	Mercury Marauder	Mercury Marauder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
861	5	1	Mercury Marquis	Mercury Marquis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
862	5	1	Mercury Mariner	Mercury Mariner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
863	5	1	Mercedes-Benz M-Class	Mercedes-Benz M-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
864	5	1	MG MG TF	MG MG TF	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
865	5	1	MG MG ZR	MG MG ZR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
866	5	1	MG MG ZS	MG MG ZS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
867	5	1	MG Midget	MG Midget	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
868	5	1	Mercury Milan	Mercury Milan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
869	5	1	Mercury Montego	Mercury Montego	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
870	5	1	Mercury Mountaineer	Mercury Mountaineer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
871	5	1	Mclaren MP4-12C	Mclaren MP4-12C	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
872	5	1	Mclaren P1	Mclaren P1	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
873	5	1	Mini Paceman	Mini Paceman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
874	5	1	Mazda Protege	Mazda Protege	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
875	5	1	Mercedes-Benz R-Class	Mercedes-Benz R-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
876	5	1	Mini Roadster	Mini Roadster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
877	5	1	Mazda RX-6	Mazda RX-6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
878	5	1	Mazda RX-7	Mazda RX-7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
879	5	1	Mazda RX-8	Mazda RX-8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
880	5	1	Mercedes-Benz S 65 AMG	Mercedes-Benz S 65 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
881	5	1	Mercury Sable	Mercury Sable	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
882	5	1	Mercedes-Benz S-Class Maybach	Mercedes-Benz S-Class Maybach	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
883	5	1	Mclaren SLR	Mclaren SLR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
884	5	1	Mercedes-Benz SL 65 AMG	Mercedes-Benz SL 65 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
885	5	1	Mercedes-Benz SLR	Mercedes-Benz SLR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
886	5	1	Mercedes-Benz SLR McLaren	Mercedes-Benz SLR McLaren	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
887	5	1	Mercedes-Benz SLS	Mercedes-Benz SLS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
888	5	1	Mercedes-Benz SLS AMG	Mercedes-Benz SLS AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
889	5	1	Mercedes-Benz SLS AMG Elektro	Mercedes-Benz SLS AMG Elektro	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
890	5	1	Mercedes-Benz SLS AMG Roadster	Mercedes-Benz SLS AMG Roadster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
891	5	1	Mercedes-Benz Sprinter	Mercedes-Benz Sprinter	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
892	5	1	Mazda T 3500	Mazda T 3500	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
893	5	1	Mazda Tribute	Mazda Tribute	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
894	5	1	Mercedes-Benz Vaneo	Mercedes-Benz Vaneo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
895	5	1	Mercedes-Benz Viano	Mercedes-Benz Viano	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
896	5	1	Mercedes-Benz Vito	Mercedes-Benz Vito	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
897	5	1	Mercedes-Benz V-Klasse	Mercedes-Benz V-Klasse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
898	5	1	Mazda Xedos	Mazda Xedos	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
899	5	1	Mazda Xedos 9	Mazda Xedos 9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
900	5	1	Mercury Zephyr	Mercury Zephyr	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
901	5	1	Mitsubishi ASX	Mitsubishi ASX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
902	5	1	Mitsubishi Lancer	Mitsubishi Lancer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
903	5	1	Mitsubishi Lancer EX	Mitsubishi Lancer EX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
904	5	1	Mitsubishi Outlander	Mitsubishi Outlander	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
905	5	1	Mitsubishi Pajero	Mitsubishi Pajero	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
906	5	1	Nissan Altima	Nissan Altima	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
907	5	1	Nissan Patrol	Nissan Patrol	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
908	5	1	Nissan Juke	Nissan Juke	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
909	5	1	Nissan 370Z	Nissan 370Z	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
910	5	1	Nissan Armada	Nissan Armada	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
911	5	1	Nissan GT-R	Nissan GT-R	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
912	5	1	Nissan Maxima	Nissan Maxima	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
913	5	1	Nissan Murano	Nissan Murano	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
914	5	1	Nissan Pathfinder	Nissan Pathfinder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
915	5	1	Nissan Patrol Safari	Nissan Patrol Safari	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
916	5	1	Nissan Sentra	Nissan Sentra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
917	5	1	Nissan Sunny	Nissan Sunny	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
918	5	1	Nissan Tiida	Nissan Tiida	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
919	5	1	Nissan Xterra	Nissan Xterra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
920	5	1	Nissan Xtrail	Nissan Xtrail	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
921	5	1	Nissan 300Z	Nissan 300Z	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
922	5	1	Nissan 350Z	Nissan 350Z	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
923	5	1	Morgan 3-Wheeler	Morgan 3-Wheeler	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
924	5	1	Morgan 4-Apr	Morgan 4-Apr	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
925	5	1	Morgan Aero 8	Morgan Aero 8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
926	5	1	Morgan Aero Coupe	Morgan Aero Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
927	5	1	Nissan Almera	Nissan Almera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
928	5	1	Nissan Almera Tino	Nissan Almera Tino	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
929	5	1	Mitsubishi Attrage	Mitsubishi Attrage	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
930	5	1	Nissan Atleon 140	Nissan Atleon 140	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
931	5	1	Nissan Bluebird	Nissan Bluebird	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
932	5	1	Nissan Cabstar	Nissan Cabstar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
933	5	1	Mitsubishi Canter	Mitsubishi Canter	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
934	5	1	Mitsubishi Carisma	Mitsubishi Carisma	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
935	5	1	Nissan Cedric	Nissan Cedric	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
936	5	1	Mitsubishi Celeste	Mitsubishi Celeste	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
937	5	1	Nissan Civilian	Nissan Civilian	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
938	5	1	Mitsubishi Colt	Mitsubishi Colt	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
939	5	1	Mitsubishi Colt Neu	Mitsubishi Colt Neu	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
940	5	1	Mitsubishi Cordia	Mitsubishi Cordia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
941	5	1	Mini (BMW) Countryman	Mini (BMW) Countryman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
942	5	1	Nissan Cube	Nissan Cube	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
943	5	1	Oldsmobile Cutlass	Oldsmobile Cutlass	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
944	5	1	Mitsubishi Delica	Mitsubishi Delica	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
945	5	1	Mitsubishi Eclipse	Mitsubishi Eclipse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
946	5	1	Mitsubishi Electric Vehicle	Mitsubishi Electric Vehicle	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
947	5	1	Mitsubishi Endeavor	Mitsubishi Endeavor	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
948	5	1	Mitsubishi Evolution	Mitsubishi Evolution	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
949	5	1	Mitsubishi Fortis	Mitsubishi Fortis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
950	5	1	Mitsubishi Galant	Mitsubishi Galant	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
951	5	1	Nissan Gloria	Nissan Gloria	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
952	5	1	Mitsubishi Grandis	Mitsubishi Grandis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
953	5	1	Mitsubishi I-Miev	Mitsubishi I-Miev	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
954	5	1	Mitsubishi L200	Mitsubishi L200	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
955	5	1	Mitsubishi L300	Mitsubishi L300	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
956	5	1	Mitsubishi Lancer Evolution	Mitsubishi Lancer Evolution	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
957	5	1	Mitsubishi Lancer Fortis	Mitsubishi Lancer Fortis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
958	5	1	Nissan LEAF	Nissan LEAF	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
959	5	1	Noble M400	Noble M400	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
960	5	1	Noble M600	Noble M600	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
961	5	1	Mitsubishi Magna	Mitsubishi Magna	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
962	5	1	Nissan Micra	Nissan Micra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
963	5	1	Mini (BMW) Mini II	Mini (BMW) Mini II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
964	5	1	Nissan Minivan	Nissan Minivan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
965	5	1	Mitsubishi Minivan	Mitsubishi Minivan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
966	5	1	Mitsubishi Mirage	Mitsubishi Mirage	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
967	5	1	Mitsubishi Nativa	Mitsubishi Nativa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
968	5	1	Nissan Navara	Nissan Navara	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
969	5	1	Nissan Note	Nissan Note	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
970	5	1	Mini (BMW) Paceman	Mini (BMW) Paceman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
971	5	1	Mitsubishi Pajero Pinin	Mitsubishi Pajero Pinin	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
972	5	1	Nissan Pathfinder Classic	Nissan Pathfinder Classic	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
973	5	1	Nissan Patrol GR	Nissan Patrol GR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
974	5	1	Nissan Pickup	Nissan Pickup	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
975	5	1	Mitsubishi PickUp	Mitsubishi PickUp	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
976	5	1	Nissan Pixo	Nissan Pixo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
977	5	1	Morgan Plus 4	Morgan Plus 4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
978	5	1	Morgan Plus 8	Morgan Plus 8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
979	5	1	Nissan Primera	Nissan Primera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
980	5	1	Nissan Pulsar	Nissan Pulsar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
981	5	1	Nissan Qashqai	Nissan Qashqai	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
982	5	1	Nissan Quest	Nissan Quest	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
983	5	1	Mitsubishi Rosa	Mitsubishi Rosa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
984	5	1	Nissan S130	Nissan S130	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
985	5	1	Mitsubishi Sapporo	Mitsubishi Sapporo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
986	5	1	Oldsmobile Silhouette	Oldsmobile Silhouette	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
987	5	1	Nissan Skyline	Nissan Skyline	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
988	5	1	Mitsubishi Space Star	Mitsubishi Space Star	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
989	5	1	Mitsubishi SpaceWagon	Mitsubishi SpaceWagon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
990	5	1	Mitsubishi Space Wagon	Mitsubishi Space Wagon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
991	5	1	Nissan TEANA	Nissan TEANA	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
992	5	1	Nissan Terrano	Nissan Terrano	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
993	5	1	Oldsmobile Toronado	Oldsmobile Toronado	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
994	5	1	Nissan Titan	Nissan Titan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
995	5	1	Nissan UD	Nissan UD	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
996	5	1	Nissan Urvan	Nissan Urvan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
997	5	1	Nissan Versa	Nissan Versa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
998	5	1	Peugeot 2008	Peugeot 2008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
999	5	1	Peugeot 208	Peugeot 208	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1000	5	1	Peugeot 3008	Peugeot 3008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1001	5	1	Peugeot 301	Peugeot 301	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1002	5	1	Peugeot 308	Peugeot 308	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1003	5	1	Peugeot 5008	Peugeot 5008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1004	5	1	Peugeot 508	Peugeot 508	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1005	5	1	Peugeot RCZ	Peugeot RCZ	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1006	5	1	Porsche Boxster	Porsche Boxster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1007	5	1	Porsche Cayenne	Porsche Cayenne	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1008	5	1	Porsche Cayman	Porsche Cayman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1009	5	1	Porsche Panamera	Porsche Panamera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1010	5	1	Peugeot 106	Peugeot 106	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1011	5	1	Peugeot 107	Peugeot 107	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1012	5	1	Peugeot 108	Peugeot 108	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1013	5	1	RAM 1500	RAM 1500	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1014	5	1	Peugeot 205	Peugeot 205	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1015	5	1	Peugeot 206	Peugeot 206	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1016	5	1	Peugeot 207	Peugeot 207	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1017	5	1	Peugeot 306	Peugeot 306	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1018	5	1	Peugeot 307	Peugeot 307	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1019	5	1	Peugeot 4007	Peugeot 4007	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1020	5	1	Peugeot 4008	Peugeot 4008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1021	5	1	Peugeot 406	Peugeot 406	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1022	5	1	Peugeot 407	Peugeot 407	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1023	5	1	Peugeot 408	Peugeot 408	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1024	5	1	Peugeot 504	Peugeot 504	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1025	5	1	Peugeot 505	Peugeot 505	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1026	5	1	Peugeot 604	Peugeot 604	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1027	5	1	Peugeot 605	Peugeot 605	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1028	5	1	Peugeot 607	Peugeot 607	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1029	5	1	Peugeot 807	Peugeot 807	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1030	5	1	Porsche 911 Carrera	Porsche 911 Carrera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1031	5	1	Porsche 911 Carrera 4	Porsche 911 Carrera 4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1032	5	1	Porsche 911 Carrera 4 GTS	Porsche 911 Carrera 4 GTS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1033	5	1	Porsche 911 Carrera 4S	Porsche 911 Carrera 4S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1034	5	1	Porsche 911 Carrera GTS	Porsche 911 Carrera GTS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1035	5	1	Porsche 911 Carrera S	Porsche 911 Carrera S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1036	5	1	Porsche 911 GT2	Porsche 911 GT2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1037	5	1	Porsche 911 GT3	Porsche 911 GT3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1038	5	1	Porsche 911 GT3 RS	Porsche 911 GT3 RS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1039	5	1	Porsche 911 Speedster	Porsche 911 Speedster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1040	5	1	Porsche 911 Targa 4	Porsche 911 Targa 4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1041	5	1	Porsche 911 Targa 4S	Porsche 911 Targa 4S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1042	5	1	Porsche 911 Targa GTS	Porsche 911 Targa GTS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1043	5	1	Porsche 911 Turbo	Porsche 911 Turbo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1044	5	1	Porsche 911 Turbo S	Porsche 911 Turbo S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1045	5	1	Porsche 918	Porsche 918	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1046	5	1	Porsche 928	Porsche 928	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1047	5	1	Porsche 944	Porsche 944	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1048	5	1	Porsche 968	Porsche 968	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1049	5	1	Porsche 9FF	Porsche 9FF	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1050	5	1	Opel Adam	Opel Adam	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1051	5	1	Opel Agila	Opel Agila	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1052	5	1	Opel Ampera	Opel Ampera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1053	5	1	Opel Antara	Opel Antara	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1054	5	1	Opel Astra OPC	Opel Astra OPC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1055	5	1	Opel Astra	Opel Astra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1056	5	1	Peugeot Bipper	Peugeot Bipper	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1057	5	1	Peugeot Boxer	Peugeot Boxer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1058	5	1	Opel Cascada	Opel Cascada	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1059	5	1	Opel Combo	Opel Combo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1060	5	1	Opel Corsa	Opel Corsa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1061	5	1	Peugeot Expert	Peugeot Expert	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1062	5	1	Opel Frontera	Opel Frontera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1063	5	1	Proton Gen-2	Proton Gen-2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1064	5	1	Pontiac Grand AM	Pontiac Grand AM	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1065	5	1	Opel GT	Opel GT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1066	5	1	Pontiac GTO	Pontiac GTO	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1067	5	1	Pagani Huayra	Pagani Huayra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1068	5	1	Opel Insignia	Opel Insignia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1069	5	1	Opel Insignia Country Tourer	Opel Insignia Country Tourer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1070	5	1	Peugeot Ion	Peugeot Ion	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1071	5	1	Opel Kadett	Opel Kadett	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1072	5	1	Opel Karl	Opel Karl	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1073	5	1	Porsche Macan	Porsche Macan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1074	5	1	Opel Meriva	Opel Meriva	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1075	5	1	Opel Mokka	Opel Mokka	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1076	5	1	Opel Omega	Opel Omega	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1077	5	1	Peugeot Partner	Peugeot Partner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1078	5	1	Peugeot RC7	Peugeot RC7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1079	5	1	Proton Savvy	Proton Savvy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1080	5	1	Opel Signum	Opel Signum	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1081	5	1	Pontiac Solstice	Pontiac Solstice	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1082	5	1	PGO Speedster	PGO Speedster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1083	5	1	Opel Speedster	Opel Speedster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1084	5	1	Oullim Spirra	Oullim Spirra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1085	5	1	Opel Tigra	Opel Tigra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1086	5	1	Opel Tigra Twin Top	Opel Tigra Twin Top	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1087	5	1	Opel Vectra	Opel Vectra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1088	5	1	Opel Vita	Opel Vita	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1089	5	1	Proton Waja	Proton Waja	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1090	5	1	Pontiac Wave	Pontiac Wave	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1091	5	1	Proton Wira	Proton Wira	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1092	5	1	Peugeot X Line	Peugeot X Line	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1093	5	1	Opel Zafira	Opel Zafira	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1094	5	1	Pagani Zonda	Pagani Zonda	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1095	5	1	Renault Captur	Renault Captur	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1096	5	1	Renault Duster	Renault Duster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1097	5	1	Renault Koleos	Renault Koleos	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1098	5	1	Renault Megane	Renault Megane	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1099	5	1	Renault Symbol	Renault Symbol	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1100	5	1	Rolls Royce Ghost	Rolls Royce Ghost	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1101	5	1	Rolls Royce Phantom	Rolls Royce Phantom	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1102	5	1	Rolls Royce Wraith	Rolls Royce Wraith	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1103	5	1	SAAB 900	SAAB 900	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1104	5	1	SAAB 9000	SAAB 9000	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1105	5	1	SAAB 3-Sep	SAAB 3-Sep	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1106	5	1	SAAB 5-Sep	SAAB 5-Sep	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1107	5	1	SAAB 9-7X	SAAB 9-7X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1108	5	1	Ssangyong Actyon	Ssangyong Actyon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1109	5	1	Seat Alhambra	Seat Alhambra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1110	5	1	Seat Altea	Seat Altea	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1111	5	1	Seat Arosa	Seat Arosa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1112	5	1	Subaru B9 Tribeca	Subaru B9 Tribeca	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1113	5	1	Subaru BRZ	Subaru BRZ	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1114	5	1	Spyker C8	Spyker C8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1115	5	1	Skoda Citigo	Skoda Citigo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1116	5	1	Renault Clio	Renault Clio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1117	5	1	Renault Clio RS	Renault Clio RS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1118	5	1	Seat Cordoba	Seat Cordoba	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1119	5	1	Rolls Royce Corniche	Rolls Royce Corniche	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1120	5	1	Spyker D12	Spyker D12	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1121	5	1	Renault Dokker	Renault Dokker	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1122	5	1	Rolls Royce Drophead	Rolls Royce Drophead	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1123	5	1	Renault Espace	Renault Espace	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1124	5	1	Seat Exeo	Seat Exeo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1125	5	1	Skoda Fabia	Skoda Fabia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1126	5	1	Skoda Felicia	Skoda Felicia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1127	5	1	Renault Fluence	Renault Fluence	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1128	5	1	Renault Fluence Elektro	Renault Fluence Elektro	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1129	5	1	Subaru Forester	Subaru Forester	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1130	5	1	Smart Forfour	Smart Forfour	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1131	5	1	Smart Fortwo	Smart Fortwo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1132	5	1	Seat Ibiza	Seat Ibiza	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1133	5	1	Subaru Impreza	Subaru Impreza	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1134	5	1	Seat Inca	Seat Inca	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1135	5	1	Subaru Justy	Subaru Justy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1136	5	1	Subaru Justy G3X	Subaru Justy G3X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1137	5	1	Renault Kadjar	Renault Kadjar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1138	5	1	Ssangyong Korando	Ssangyong Korando	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1139	5	1	Ssangyong Kyron	Ssangyong Kyron	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1140	5	1	Renault Kangoo	Renault Kangoo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1141	5	1	Renault Laguna	Renault Laguna	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1142	5	1	Renault Latitude	Renault Latitude	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1143	5	1	Rover Land	Rover Land	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1144	5	1	Subaru Legacy	Subaru Legacy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1145	5	1	Seat Leon	Seat Leon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1146	5	1	Renault Logan	Renault Logan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1147	5	1	Renault Master	Renault Master	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1148	5	1	Seat Mii	Seat Mii	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1149	5	1	Renault Modus	Renault Modus	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1150	5	1	Ssangyong Musso	Ssangyong Musso	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1151	5	1	Skoda Octavia	Skoda Octavia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1152	5	1	Rolls Royce Park Ward	Rolls Royce Park Ward	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1153	5	1	Rolls Royce Phantom Series II	Rolls Royce Phantom Series II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1154	5	1	Renault R12	Renault R12	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1155	5	1	Renault R19	Renault R19	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1156	5	1	Renault R9	Renault R9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1157	5	1	Skoda Rapid	Skoda Rapid	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1158	5	1	Ssangyong Rexton	Ssangyong Rexton	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1159	5	1	Ssangyong Rodius	Ssangyong Rodius	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1160	5	1	Skoda Roomster	Skoda Roomster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1161	5	1	Rover Rover 25	Rover Rover 25	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1162	5	1	Rover Rover 45	Rover Rover 45	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1163	5	1	Rover Rover 75	Rover Rover 75	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1164	5	1	Rover Rover Streetwise	Rover Rover Streetwise	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1165	5	1	SAAB Saab 9-3 X	SAAB Saab 9-3 X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1166	5	1	SAAB Saab 9-4X	SAAB Saab 9-4X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1167	5	1	Renault Safrane	Renault Safrane	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1168	5	1	Renault Sandero	Renault Sandero	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1323	5	1	Ferrari 812	Ferrari 812	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1169	5	1	Renault Scenic	Renault Scenic	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1170	5	1	Rolls Royce Silver Cloud	Rolls Royce Silver Cloud	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1171	5	1	Rolls Royce Silver Race	Rolls Royce Silver Race	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1172	5	1	Rolls Royce Silver Seraph	Rolls Royce Silver Seraph	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1173	5	1	Rolls Royce Silver Shadow II	Rolls Royce Silver Shadow II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1174	5	1	Rolls Royce Silver Shadow One	Rolls Royce Silver Shadow One	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1175	5	1	Rolls Royce Silver Spur	Rolls Royce Silver Spur	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1176	5	1	Rolls Royce Silver Spur II	Rolls Royce Silver Spur II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1177	5	1	Rolls Royce Silver Wraith	Rolls Royce Silver Wraith	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1178	5	1	Smart Smart Fortwo Elektro	Smart Smart Fortwo Elektro	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1179	5	1	Smart Smart roadster	Smart Smart roadster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1180	5	1	Skoda Superb	Skoda Superb	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1181	5	1	Ssangyong Tivoli	Ssangyong Tivoli	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1182	5	1	Seat Toledo	Seat Toledo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1183	5	1	Renault Trafic	Renault Trafic	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1184	5	1	Subaru Trezia	Subaru Trezia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1185	5	1	Renault Twingo	Renault Twingo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1186	5	1	Renault Twizy	Renault Twizy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1187	5	1	Rover VL 75	Rover VL 75	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1188	5	1	Renault Wind	Renault Wind	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1189	5	1	Skoda Yeti	Skoda Yeti	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1190	5	1	Renault ZOE	Renault ZOE	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1191	5	1	Renault ZOE	Renault ZOE	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1192	5	1	Suzuki APV	Suzuki APV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1193	5	1	Suzuki Carry	Suzuki Carry	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1194	5	1	Suzuki Celerio	Suzuki Celerio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1195	5	1	Suzuki Ertiga	Suzuki Ertiga	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1196	5	1	Suzuki Grand Vitara	Suzuki Grand Vitara	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1197	5	1	Suzuki Jimny	Suzuki Jimny	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1198	5	1	Suzuki Kizashi	Suzuki Kizashi	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1199	5	1	Toyota 86	Toyota 86	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1200	5	1	Toyota Avalon	Toyota Avalon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1201	5	1	Toyota Camry	Toyota Camry	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1202	5	1	Toyota Corolla	Toyota Corolla	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1203	5	1	Toyota FJ Cruiser	Toyota FJ Cruiser	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1204	5	1	Toyota Fortuner	Toyota Fortuner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1205	5	1	Toyota Innova	Toyota Innova	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1206	5	1	Toyota Land Cruiser	Toyota Land Cruiser	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1207	5	1	Toyota Prado	Toyota Prado	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1208	5	1	Toyota Previa	Toyota Previa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1209	5	1	Toyota Prius	Toyota Prius	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1210	5	1	Toyota RAV4	Toyota RAV4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1211	5	1	Toyota Yaris	Toyota Yaris	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1212	5	1	Volkswagen Beetle	Volkswagen Beetle	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1213	5	1	Volkswagen Golf	Volkswagen Golf	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1214	5	1	Volkswagen Golf R	Volkswagen Golf R	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1215	5	1	Volkswagen Jetta	Volkswagen Jetta	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1216	5	1	TATA 1618	TATA 1618	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1217	5	1	Toyota 4Runner	Toyota 4Runner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1218	5	1	Suzuki Alto	Suzuki Alto	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1219	5	1	Suzuki APV Van	Suzuki APV Van	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1220	5	1	Volkswagen Amarok	Volkswagen Amarok	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1221	5	1	Toyota Aurion	Toyota Aurion	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1222	5	1	Toyota Auris	Toyota Auris	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1223	5	1	Toyota Avanza	Toyota Avanza	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1224	5	1	Toyota Avensis	Toyota Avensis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1225	5	1	Toyota Avensis Verso	Toyota Avensis Verso	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1226	5	1	Toyota Aygo	Toyota Aygo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1227	5	1	Suzuki Baleno	Suzuki Baleno	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1228	5	1	Volkswagen Bora	Volkswagen Bora	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1229	5	1	Volkswagen Cabrio	Volkswagen Cabrio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1230	5	1	Volkswagen Caddy	Volkswagen Caddy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1231	5	1	Toyota Carina	Toyota Carina	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1232	5	1	Volkswagen CC	Volkswagen CC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1233	5	1	Toyota Celica	Toyota Celica	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1234	5	1	Suzuki Ciaz	Suzuki Ciaz	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1235	5	1	Toyota Coaster	Toyota Coaster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1236	5	1	Toyota Corolla Verso	Toyota Corolla Verso	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1237	5	1	Toyota Corona	Toyota Corona	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1238	5	1	Volkswagen Crafter	Volkswagen Crafter	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1239	5	1	Toyota Cressida	Toyota Cressida	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1240	5	1	Toyota Crown	Toyota Crown	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1241	5	1	Toyota Echo	Toyota Echo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1242	5	1	Volkswagen EOS	Volkswagen EOS	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1243	5	1	Volkswagen Eurovan	Volkswagen Eurovan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1244	5	1	Volkswagen Golf Plus	Volkswagen Golf Plus	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1245	5	1	Volkswagen Golf R32	Volkswagen Golf R32	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1246	5	1	Toyota GT86	Toyota GT86	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1247	5	1	Volkswagen GTI	Volkswagen GTI	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1248	5	1	Toyota Hiace	Toyota Hiace	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1249	5	1	Toyota Hilux	Toyota Hilux	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1250	5	1	Suzuki Ignis	Suzuki Ignis	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1251	5	1	TATA Indica	TATA Indica	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1252	5	1	Toyota IQ	Toyota IQ	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1253	5	1	Toyota Land Cruiser 70	Toyota Land Cruiser 70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1254	5	1	Toyota Land Cruiser V8	Toyota Land Cruiser V8	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1255	5	1	Suzuki Liana	Suzuki Liana	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1256	5	1	TATA Manza	TATA Manza	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1257	5	1	Toyota MR2	Toyota MR2	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1258	5	1	Toyota MR 2	Toyota MR 2	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1259	5	1	Toyota Prius+	Toyota Prius+	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1260	5	1	TATA Safari	TATA Safari	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1261	5	1	Toyota Scion	Toyota Scion	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1262	5	1	Toyota Sequoia	Toyota Sequoia	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1263	5	1	Toyota Sienna	Toyota Sienna	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1264	5	1	Toyota Solara	Toyota Solara	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1265	5	1	Suzuki Splash	Suzuki Splash	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1266	5	1	Toyota Starlet	Toyota Starlet	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1267	5	1	Toyota Supra	Toyota Supra	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1268	5	1	Suzuki SX4	Suzuki SX4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1269	5	1	Suzuki Swift	Suzuki Swift	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1270	5	1	Suzuki SX4 S-Cross	Suzuki SX4 S-Cross	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1271	5	1	TATA Telcoline	TATA Telcoline	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1272	5	1	Toyota Tacoma	Toyota Tacoma	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1273	5	1	Toyota Tercel	Toyota Tercel	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1274	5	1	UAZ Tigr	UAZ Tigr	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1275	5	1	Subaru Tribeca	Subaru Tribeca	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1276	5	1	Toyota Tundra	Toyota Tundra	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1277	5	1	Toyota Urban Cruiser	Toyota Urban Cruiser	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1278	5	1	Toyota Venza	Toyota Venza	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1279	5	1	Suzuki Verona	Suzuki Verona	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1280	5	1	Toyota Verso	Toyota Verso	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1281	5	1	Toyota Verso S	Toyota Verso S	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1282	5	1	Suzuki Vitara	Suzuki Vitara	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1283	5	1	Suzuki Wagon R+	Suzuki Wagon R+	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1284	5	1	Subaru WRX	Subaru WRX	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1285	5	1	Subaru WRX STI	Subaru WRX STI	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1286	5	1	Toyota XA	Toyota XA	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1287	5	1	TATA Xenon	TATA Xenon	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1288	5	1	Suzuki XL7	Suzuki XL7	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1289	5	1	Subaru XV	Subaru XV	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1290	5	1	Toyota Zalas	Toyota Zalas	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1291	5	1	Volkswagen Passat	Volkswagen Passat	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1292	5	1	Volkswagen Scirocco	Volkswagen Scirocco	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1293	5	1	Volkswagen Tiguan	Volkswagen Tiguan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1294	5	1	Volkswagen Touareg	Volkswagen Touareg	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1295	5	1	Volvo 960	Volvo 960	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1296	5	1	Volvo S90	Volvo S90	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1297	5	1	Volvo V90	Volvo V90	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1298	5	1	Volvo XC60	Volvo XC60	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1299	5	1	Volvo XC90	Volvo XC90	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1300	5	1	Audi A4	Audi A4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1301	5	1	Ashok tst	Ashok tst	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1302	5	1	Artega dfadsfdfd	Artega dfadsfdfd	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1303	5	1	Alpina ewetet	Alpina ewetet	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1304	5	1	Wiesmann GT	Wiesmann GT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1305	5	1	Alfa Romeo 145	Alfa Romeo 145	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1306	5	1	Alpina test	Alpina test	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1307	5	1	Alpina test	Alpina test	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1308	5	1	Aston Martin DB11	Aston Martin DB11	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1309	5	1	Aston Martin DB11 Volante	Aston Martin DB11 Volante	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1310	5	1	Lincoln Continental	Lincoln Continental	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1311	5	1	Aston Martin DB9 Volante	Aston Martin DB9 Volante	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1312	5	1	Audi A5 Sportback	Audi A5 Sportback	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1313	5	1	Bentley Bentayga	Bentley Bentayga	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1314	5	1	Infiniti G	Infiniti G	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1315	5	1	BMW 4-Series Convertible	BMW 4-Series Convertible	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1316	5	1	BMW M4 Convertible	BMW M4 Convertible	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1317	5	1	Cadillac ATS Coupe	Cadillac ATS Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1318	5	1	Cadillac ATS V Coupe	Cadillac ATS V Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1319	5	1	Cadillac CT6	Cadillac CT6	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1320	5	1	Mercedes-Benz ML 350	Mercedes-Benz ML 350	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1321	5	1	Cadillac XT5	Cadillac XT5	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1322	5	1	Cadillac XTS V	Cadillac XTS V	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1324	5	1	Ferrari GTC4	Ferrari GTC4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1325	5	1	Ferrari PORTIFINO	Ferrari PORTIFINO	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1326	5	1	Mercedes-Benz ML 500	Mercedes-Benz ML 500	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1327	5	1	Renault Talisman	Renault Talisman	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1328	5	1	Volkswagen Scirocco r	Volkswagen Scirocco r	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1329	5	1	Volkswagen Touran	Volkswagen Touran	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1330	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1331	5	1	Volvo V940	Volvo V940	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1332	5	1	Peugeot 1007	Peugeot 1007	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1333	5	1	Lada 110	Lada 110	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1334	5	1	Ferrari 125	Ferrari 125	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1335	5	1	Fiat 128	Fiat 128	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1336	5	1	Mclaren 12C	Mclaren 12C	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1337	5	1	Alfa Romeo 159	Alfa Romeo 159	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1338	5	1	Rover 200	Rover 200	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1339	5	1	BMW 2er Active Tourer	BMW 2er Active Tourer	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1340	5	1	Chrysler 300	Chrysler 300	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1341	5	1	Mitsubishi 3000GT	Mitsubishi 3000GT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1342	5	1	Volvo 745	Volvo 745	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1343	5	1	Volvo 850	Volvo 850	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1344	5	1	Volvo C30	Volvo C30	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1345	5	1	Volvo C70	Volvo C70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1346	5	1	Cadillac ATS V Coupe	Cadillac ATS V Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1347	5	1	TATA Indigo	TATA Indigo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1348	5	1	Volkswagen LT	Volkswagen LT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1349	5	1	Volkswagen Lupo	Volkswagen Lupo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1350	5	1	Wiesmann MF3	Wiesmann MF3	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1351	5	1	Wiesmann MF4	Wiesmann MF4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1352	5	1	Wiesmann MF5	Wiesmann MF5	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1353	5	1	Tesla Model S	Tesla Model S	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1354	5	1	Tesla Model X	Tesla Model X	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1355	5	1	Volkswagen Multivan	Volkswagen Multivan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1356	5	1	ZNA Oting	ZNA Oting	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1357	5	1	Volkswagen Passat Variant	Volkswagen Passat Variant	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1358	5	1	Volkswagen Phaeton	Volkswagen Phaeton	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1359	5	1	Volkswagen Polo	Volkswagen Polo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1360	5	1	Volkswagen Rabbit	Volkswagen Rabbit	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1361	5	1	ZNA Rich	ZNA Rich	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1362	5	1	Volvo S40	Volvo S40	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1363	5	1	Volvo S60	Volvo S60	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1364	5	1	Volvo S70	Volvo S70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1365	5	1	Volvo S80	Volvo S80	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1366	5	1	Volkswagen Santana	Volkswagen Santana	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1367	5	1	Volkswagen Sharan	Volkswagen Sharan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1368	5	1	Ford Shelby GT500	Ford Shelby GT500	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1369	5	1	Volkswagen SpaceFox	Volkswagen SpaceFox	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1370	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1371	5	1	Volkswagen Transporter	Volkswagen Transporter	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1372	5	1	Volvo V40	Volvo V40	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1373	5	1	Volvo V 40 (2012)	Volvo V 40 (2012)	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1374	5	1	Volvo V 40 Cross Country	Volvo V 40 Cross Country	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1375	5	1	Volvo V50	Volvo V50	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1376	5	1	Volvo V60	Volvo V60	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1377	5	1	Volvo V 60 Cross Country	Volvo V 60 Cross Country	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1378	5	1	Volvo V70	Volvo V70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1379	5	1	Volkswagen Vento	Volkswagen Vento	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1380	5	1	Volvo XC70	Volvo XC70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1381	5	1	Volvo XC90 (2014)	Volvo XC90 (2014)	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1382	5	1	ZNA Yumsun	ZNA Yumsun	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1383	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1384	5	1	Mazda 323	Mazda 323	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1385	5	1	Peugeot 405	Peugeot 405	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1386	5	1	Mazda 5	Mazda 5	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1387	5	1	Fiat 500X	Fiat 500X	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1388	5	1	MG 550	MG 550	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1389	5	1	Volvo 740	Volvo 740	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1390	5	1	Porsche 911 GT2 RS	Porsche 911 GT2 RS	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1391	5	1	Morgan Aero Coupe	Morgan Aero Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1392	5	1	Ford Aerostar	Ford Aerostar	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1393	5	1	Audi All Road Quattro	Audi All Road Quattro	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1394	5	1	Hyundai Atos	Hyundai Atos	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1395	5	1	Renault Avantime	Renault Avantime	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1396	5	1	Chery B11 Oriental Son	Chery B11 Oriental Son	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1397	5	1	Kia Bongo III	Kia Bongo III	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1398	5	1	Citroen C8	Citroen C8	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1399	5	1	Volkswagen Cabriolet	Volkswagen Cabriolet	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1400	5	1	PGO Cevennes	PGO Cevennes	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1401	5	1	Honda Civic	Honda Civic	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1402	5	1	Daihatsu Delta	Daihatsu Delta	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1403	5	1	Mitsubishi Diamante	Mitsubishi Diamante	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1404	5	1	Land Rover Discovery	Land Rover Discovery	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1405	5	1	Dacia Duster	Dacia Duster	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1406	5	1	Mercedes-Benz E 55 AMG	Mercedes-Benz E 55 AMG	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1407	5	1	Geely Emgrand 7	Geely Emgrand 7	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1408	5	1	Cadillac Fleetwood	Cadillac Fleetwood	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1409	5	1	Seat FR Series	Seat FR Series	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1410	5	1	Fiat Freemont	Fiat Freemont	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1411	5	1	Alfa Romeo Giulietta	Alfa Romeo Giulietta	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1412	5	1	Maserati Gransport Spyder	Maserati Gransport Spyder	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1413	5	1	Ford GT	Ford GT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1414	5	1	Hyundai H1	Hyundai H1	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1415	5	1	Toyota Highlander	Toyota Highlander	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1416	5	1	Infiniti G	Infiniti G	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1417	5	1	Jeep Liberty	Jeep Liberty	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1418	5	1	MG MG ZT	MG MG ZT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1419	5	1	Mitsubishi Montero	Mitsubishi Montero	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1420	5	1	Ford Mustang Shelby GT500	Ford Mustang Shelby GT500	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1421	5	1	Chrysler New Yorker	Chrysler New Yorker	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1422	5	1	Dodge Nitro	Dodge Nitro	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1423	5	1	Honda Odyssey J	Honda Odyssey J	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1424	5	1	Subaru Outback	Subaru Outback	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1425	5	1	Mazda Persona	Mazda Persona	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1426	5	1	Morgan Roadster	Morgan Roadster	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1427	5	1	Volvo S 60 Cross Country	Volvo S 60 Cross Country	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1428	5	1	Proton Saga	Proton Saga	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1429	5	1	Kia Sedona	Kia Sedona	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1430	5	1	Rolls Royce Seraph	Rolls Royce Seraph	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1431	5	1	Mercedes-Benz SL 63 AMG	Mercedes-Benz SL 63 AMG	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1432	5	1	Cadillac SRX	Cadillac SRX	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1433	5	1	Suzuki Swift Dzire	Suzuki Swift Dzire	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1434	5	1	Chevrolet Trail Blazer	Chevrolet Trail Blazer	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1435	5	1	Fiat Ulysse	Fiat Ulysse	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1436	5	1	Aston Martin Vanquish My 2014	Aston Martin Vanquish My 2014	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1437	5	1	Renault Vel Satis	Renault Vel Satis	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1438	5	1	Great Wall Wingle 3	Great Wall Wingle 3	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1439	5	1	Jaguar XJS	Jaguar XJS	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1440	5	1	Lancia Ypsilon	Lancia Ypsilon	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1441	5	1	Opel Zafira Tourer	Opel Zafira Tourer	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1442	5	1	Tesla Model S	Tesla Model S	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
14	14	8	Residential	Residential	1	2025-03-20 10:42:01	2025-04-10 06:55:03	\N
1443	14	14	Agency	Agency	1	2025-04-10 07:26:29	2025-04-10 07:26:29	\N
1444	14	14	Landlord	Landlord	1	2025-04-10 07:29:56	2025-04-10 07:29:56	\N
1445	14	14	Developer	Developer	1	2025-04-10 07:30:24	2025-04-10 07:30:24	\N
1446	14	15	Yearly	Yearly	1	2025-04-10 07:30:48	2025-04-10 07:30:48	\N
1447	14	15	Bi-Yearly	Bi-Yearly	1	2025-04-10 07:31:15	2025-04-10 07:31:15	\N
1448	14	15	Quarterly	Quarterly	1	2025-04-10 07:31:39	2025-04-10 07:31:39	\N
1449	14	15	Monthly	Monthly	1	2025-04-10 07:32:07	2025-04-10 07:32:07	\N
1450	5	7	White	أبيض	1	2025-04-17 06:25:58	2025-04-17 06:25:58	\N
1451	5	7	Black	أسود	1	2025-04-17 06:26:25	2025-04-17 06:26:25	\N
1452	5	16	Beige	بيج	1	2025-04-17 06:27:39	2025-04-17 06:27:39	\N
1453	5	16	Red	أحمر	1	2025-04-17 06:28:28	2025-04-17 06:28:28	\N
1454	5	17	Yes	نعم	1	2025-04-17 06:28:54	2025-04-17 06:28:54	\N
1455	5	17	No	لا	1	2025-04-17 06:29:24	2025-04-17 06:29:24	\N
1456	5	18	Good	جيد	1	2025-04-17 06:29:51	2025-04-17 06:29:51	\N
1457	5	18	Bad	سيئ	1	2025-04-17 06:30:19	2025-04-17 06:30:19	\N
1458	5	19	Working	العامل	1	2025-04-17 06:30:58	2025-04-17 06:30:58	\N
1459	5	19	Not working	لا يعمل	1	2025-04-17 06:31:31	2025-04-17 06:31:31	\N
1460	10	20	Yes	han	1	2025-04-18 21:35:49	2025-04-18 21:35:49	\N
1461	10	20	No	no	1	2025-04-18 21:36:12	2025-04-18 21:36:12	\N
1462	15	21	Apartment	شقة	1	2025-04-19 17:29:43	2025-04-19 17:29:43	\N
1464	15	25	Flat	وطيء	1	2025-04-19 18:45:32	2025-04-19 18:45:32	\N
1465	15	26	Commercial	تجاري	1	2025-04-19 18:47:04	2025-04-19 18:47:04	\N
1466	15	21	Flat	وطيء	1	2025-04-21 09:22:36	2025-04-21 09:22:36	\N
1467	15	26	Residential	سكني	1	2025-04-21 09:25:57	2025-04-21 09:25:57	\N
1468	15	25	Apartment	شقة	1	2025-04-21 09:37:55	2025-04-21 09:37:55	\N
1470	14	27	Apartment	Apartment	1	2025-04-22 10:04:17	2025-04-22 10:04:17	\N
1471	14	27	Townhouses	تاون هاوس	1	2025-04-22 10:11:08	2025-04-22 10:11:08	\N
1472	14	28	Office	مكتب	1	2025-04-22 10:43:11	2025-04-22 11:13:46	\N
1473	14	28	Shop	محل	1	2025-04-22 10:44:04	2025-04-22 11:14:09	\N
1474	14	37	Fixed	ثابت	1	2025-04-24 08:39:28	2025-04-24 08:39:28	\N
1475	14	37	Negotiable	قابل للتفاوض	1	2025-04-24 08:40:14	2025-04-24 08:40:14	\N
1476	14	36	Dollar $	دولار $	1	2025-04-24 08:41:00	2025-04-24 08:41:00	\N
1477	14	36	AED	درهم إماراتي	1	2025-04-24 08:41:38	2025-04-24 08:41:38	\N
1478	14	36	SYP	الليرة السورية	1	2025-04-24 08:42:18	2025-04-24 08:42:18	\N
1479	14	35	Mosque	مسجد	1	2025-04-24 08:43:29	2025-04-24 08:43:29	\N
1480	14	35	Parks	منتزه	1	2025-04-24 08:43:58	2025-04-24 08:43:58	\N
1481	14	35	School	مدرسة	1	2025-04-24 08:45:12	2025-04-24 08:45:12	\N
1482	14	35	Medical Clinic	عيادة طبية	1	2025-04-24 08:46:00	2025-04-24 08:46:20	\N
1483	14	29	Cladded	مُكسى	1	2025-04-24 08:47:58	2025-04-24 08:47:58	\N
1484	14	29	Not Cladded	غير مُكسى	1	2025-04-24 08:48:43	2025-04-24 08:48:43	\N
1485	14	31	Southern	جنوبي	1	2025-04-24 08:58:16	2025-04-24 08:58:16	\N
1486	14	31	Northern	شمالي	1	2025-04-24 08:58:47	2025-04-24 08:58:47	\N
1487	14	31	Eastern	شرقي	1	2025-04-24 08:59:16	2025-04-24 08:59:16	\N
1488	14	31	Western	غربي	1	2025-04-24 08:59:49	2025-04-24 08:59:49	\N
\.


--
-- Data for Name: category_fields; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.category_fields (id, category_id, type, label, name, label_ar, name_ar, options, attribute_id, file_types, created_at, updated_at, "order", field_id, required, deleted_at, section) FROM stdin;
64	5	select	Year	Year	سنة	سنة	\N	3	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	3	3	1	\N	basic
39	14	text	Location	Location	Location	Location	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	4	0	\N	\N	basic
41	14	select	Housing Category	Housing Category	Housing Category	Housing Category	\N	9	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	5	2	\N	\N	basic
42	14	select	Is it furnished?	Is it furnished?	?Is it furnished	?Is it furnished	\N	10	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	6	3	\N	\N	basic
70	5	files	images	images	الصور	الصور	\N	\N	jpg,png	2025-03-19 14:57:57	2025-04-23 09:04:10	0	9	1	\N	advance
65	5	numeric	Kilometers	Kilometers	كيلومترات	كيلومترات	\N	\N	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	4	4	1	\N	basic
8	2	text	Title	Title	Title	Title	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	0	0	\N	basic
9	2	select	Property Type	Property Type	Property Type	Property Type	\N	8	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	1	7	0	\N	basic
10	2	select	Housing Category	Housing Category	Housing Category	Housing Category	\N	9	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	2	8	0	\N	basic
11	2	select	Is it furnished?	Is it furnished?	Is it furnished?	Is it furnished?	\N	10	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	3	9	0	\N	basic
12	2	text	Phone number	Phone number	Phone number	Phone number	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	1	0	\N	basic
13	2	text	Price	Price	Price	Price	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	2	0	\N	basic
14	2	text	Describe your property	Describe your property	Describe your property	Describe your property	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	3	0	\N	basic
15	2	text	Size	Size	Size	Size	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	4	0	\N	basic
16	2	text	Developer	Developer	Developer	Developer	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	5	0	\N	basic
17	2	text	Annual Community Field	Annual Community Field	Annual Community Field	Annual Community Field	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	6	0	\N	basic
78	15	checkbox	Multi option field	Multi option field	حقل متعدد الخيارات	حقل متعدد الخيارات	option1,option2,option3	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	5	7	\N	\N	basic
66	5	select	Body Type	Body Type	نوع الجسم	نوع الجسم	\N	4	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	5	5	1	\N	basic
67	5	select	Is your car insured in Syria	Is your car insured in Syria	هل سيارتك مؤمنة في سوريا؟	هل سيارتك مؤمنة في سوريا؟	\N	5	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	6	6	1	\N	basic
71	15	checkbox	Amenities	Amenities	وسائل الراحه	وسائل الراحه	Maids Room,Study,Central A/C & Heating,Concierge Service,Balcony,Private Garden,Private Pool, Private Gym,Private Jacuzzi,Shared Pool,Shared Spa,Shared Gym,Security,Maid Service,Covered Parking	\N	\N	2025-04-21 05:44:57	2025-04-21 09:08:27	3	3	\N	2025-04-21 09:08:27	basic
58	15	text	Ad Title	Ad Title	عنوان الإعلان	عنوان الإعلان	\N	\N	\N	2025-04-19 17:17:51	2025-04-21 09:31:37	0	0	1	2025-04-21 09:31:37	basic
68	5	numeric	Price	Price	سعر	سعر	\N	\N	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	7	7	1	\N	basic
73	15	text	Text Field	Text Field	قيمة النص	قيمة النص	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	0	2	1	\N	basic
74	15	textarea	Text Area Field	Text Area Field	حقل منطقة النص	حقل منطقة النص	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	1	3	\N	\N	basic
75	15	numeric	Price	Price	ثمن	ثمن	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	2	4	\N	\N	basic
76	15	radio	Gender	Gender	جنس	جنس	Male,Female	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	3	5	\N	\N	basic
77	15	mobile	Mobile	Mobile	جوال	جوال	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	4	6	\N	\N	basic
69	5	mobile	Phone Number	Phone Number	رقم التليفون	رقم التليفون	\N	\N	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	8	8	1	\N	basic
62	5	make	Make	Moke	الوضع والنموذج	الوضع والنموذج	\N	1	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	1	1	1	\N	basic
80	14	select	Property Residential type	Property Residential type	Property Residential type	Property Residential type	\N	27	\N	2025-04-22 10:07:26	2025-04-22 10:19:56	11	11	\N	2025-04-22 10:19:56	basic
61	5	text	Ads Title	Ads Title	عنوان الإعلانات	عنوان الإعلانات	\N	\N	\N	2025-03-19 14:57:57	2025-04-17 06:32:29	0	0	0	2025-04-17 06:32:29	basic
63	5	select	Regional Specs	Regional Specs	المواصفات الإقليمية	المواصفات الإقليمية	\N	2	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	2	2	1	\N	basic
43	14	select	Facilities	Facilities	Facilities	Facilities	\N	11	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	0	4	\N	\N	basic
40	14	select	Property Type	Property Type	Property Type	Property Type	\N	8	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	1	1	\N	\N	basic
82	14	select	Commercial Types	Commercial Types	Commercial Types	Commercial Types	\N	28	\N	2025-04-22 11:15:44	2025-04-22 12:08:47	2	12	1	\N	basic
44	14	text	Area/Size in sqft	Area/Size in sqft	Area/Size in sqft	Area/Size in sqft	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	3	6	\N	\N	basic
45	14	select	Listed By	Listed By	Listed By	Listed By	\N	14	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	7	7	\N	\N	basic
46	14	select	Rent is Paid	Rent is Paid	Rent is Paid	Rent is Paid	\N	15	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	8	8	\N	\N	basic
47	14	text	Price	Price	Price	Price	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	9	5	\N	\N	basic
81	14	select	Residential Categories	Residential Categories	الفئات السكنية	الفئات السكنية	\N	27	\N	2025-04-22 10:24:33	2025-04-22 12:08:47	10	11	1	\N	basic
72	15	amenities	Amenities	Amenities	وسائل الراحة	وسائل الراحة	\N	\N	\N	2025-04-21 09:08:27	2025-04-21 09:40:12	3	4	1	2025-04-21 09:40:12	basic
48	14	text	Phone Number	Phone Number	Phone Number	Phone Number	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	11	9	\N	\N	basic
49	14	file	Images	Images	Images	Images	\N	\N	pdf,jpeg,jpg,png	2025-04-10 07:38:30	2025-04-22 12:08:47	12	10	\N	\N	basic
59	15	select	Select Category	Select Category	حدد الفئة	حدد الفئة	\N	26	\N	2025-04-19 17:59:18	2025-04-21 09:50:06	6	1	1	\N	basic
57	5	model	Model	Model	Model	Model	\N	\N	\N	2025-04-18 05:32:20	2025-04-23 09:04:10	9	16	1	\N	basic
56	5	textarea	Description	Description	وصف	وصف	\N	\N	\N	2025-04-17 06:42:43	2025-04-23 09:04:10	10	15	1	\N	advance
50	5	select	Fuel Type	Fuel Type	نوع الوقود	نوع الوقود	\N	6	\N	2025-04-17 06:32:29	2025-04-23 09:04:10	11	10	\N	\N	advance
51	5	text	Exterior Color	Exterior Color	اللون الخارجي	اللون الخارجي	\N	\N	\N	2025-04-17 06:32:29	2025-04-23 09:04:10	12	11	1	\N	advance
60	15	select	Select Property Type	Select Property Type	اختر نوع العقار	اختر نوع العقار	\N	25	\N	2025-04-19 17:59:18	2025-04-21 09:50:06	7	2	1	\N	basic
79	15	amenities	Amenities	Amenities	وسائل الراحه	وسائل الراحه	\N	\N	\N	2025-04-21 09:50:06	2025-04-21 09:50:06	8	8	\N	\N	basic
52	5	select	Interior Color	Interior Color	اللون الداخلي	اللون الداخلي	\N	16	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	13	11	1	\N	advance
53	5	select	Warranty	Warranty	الضمان	الضمان	\N	17	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	14	12	1	\N	advance
54	5	select	Body Condition	Body Condition	حالة الجسم	حالة الجسم	\N	18	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	15	13	1	\N	advance
55	5	select	Mechanical Condition	Mechanical Condition	الحالة الميكانيكية	الحالة الميكانيكية	\N	19	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	16	14	1	\N	advance
\.


--
-- Data for Name: challenges; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.challenges (id, user_id, name, challenge_type, target_type, target_value, start_date, end_date, status, created_at, updated_at, deleted_at) FROM stdin;
13	1	Melyssa Cooke	1	2	34	2024-12-20	2024-12-26	1	2024-12-05 21:32:47	2024-12-16 15:53:25	2024-12-16 15:53:25
14	1	Noah Wise111	2	4	45	2024-12-26	2024-12-27	1	2024-12-05 21:33:05	2024-12-18 08:04:47	\N
15	1	Testing	2	1	12	2024-12-17	2025-02-01	1	2024-12-05 21:43:13	2024-12-15 22:48:49	\N
17	1	Macon Bradford	2	3	2342	2024-12-16	2024-12-24	1	2024-12-16 00:15:33	2024-12-16 15:47:51	2024-12-16 15:47:51
18	1	Abigail Snider	2	3	56	2024-12-20	2024-12-21	1	2024-12-16 15:53:48	2024-12-16 15:54:26	2024-12-16 15:54:26
19	1	Test	2	4	12	2024-12-27	2024-12-31	1	2024-12-16 15:56:52	2024-12-16 15:57:31	2024-12-16 15:57:31
20	1	Test12	2	4	1	2024-12-21	2024-12-26	0	2024-12-18 08:05:16	2024-12-19 21:49:14	\N
\.


--
-- Data for Name: challenges_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.challenges_companies (id, challenge_id, company_id, created_at, updated_at, deleted_at) FROM stdin;
16	15	23	2024-12-15 22:48:49	2024-12-15 22:48:49	\N
17	17	10	2024-12-16 00:15:33	2024-12-16 14:22:13	2024-12-16 14:22:13
18	17	23	2024-12-16 14:22:13	2024-12-16 15:47:51	2024-12-16 15:47:51
19	14	23	2024-12-16 14:22:54	2024-12-16 14:22:54	\N
20	18	23	2024-12-16 15:54:05	2024-12-16 15:54:26	2024-12-16 15:54:26
21	19	23	2024-12-16 15:56:52	2024-12-16 15:57:31	2024-12-16 15:57:31
22	20	23	2024-12-18 08:05:16	2024-12-18 08:05:16	\N
23	20	32	2024-12-19 18:03:51	2024-12-19 18:03:51	\N
\.


--
-- Data for Name: cities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cities (id, name, name_ar, status, created_at, updated_at, deleted_at, country_id) FROM stdin;
3	Dubaii	دبي	1	2025-03-24 11:53:17	2025-03-24 11:53:17	\N	1
4	Damascus	دمشق	1	2025-04-11 02:52:50	2025-04-11 02:52:50	\N	2
5	Damascus Town	ريف دمشق	1	2025-04-11 02:53:51	2025-04-18 18:07:35	\N	2
6	Aleppo	حلب	1	2025-04-18 18:08:20	2025-04-18 18:08:20	\N	2
7	Homs	حمص	1	2025-04-18 18:09:28	2025-04-18 18:09:28	\N	2
8	Hama	حماة	1	2025-04-18 18:10:17	2025-04-18 18:10:17	\N	2
9	Daraa	درعا	1	2025-04-18 18:11:03	2025-04-18 18:11:03	\N	2
10	As-suwayda	السويداء	1	2025-04-18 18:11:55	2025-04-18 18:11:55	\N	2
11	Quneitra	القنيطيره	1	2025-04-18 18:12:44	2025-04-18 18:12:44	\N	2
12	Tartus	طرطوس	1	2025-04-18 18:13:25	2025-04-18 18:13:25	\N	2
13	Latakia	اللاذقية	1	2025-04-18 18:14:02	2025-04-18 18:14:02	\N	2
14	Idlib	إدلب	1	2025-04-18 18:15:16	2025-04-18 18:15:16	\N	2
15	Al-Raqqah	الرقة	1	2025-04-18 18:15:58	2025-04-18 18:15:58	\N	2
16	Deir ez-zor	دير الزور	1	2025-04-18 18:16:37	2025-04-18 18:16:37	\N	2
17	Al-Hasakah	الحسكة	1	2025-04-18 18:17:11	2025-04-18 18:17:11	\N	2
1	Abu Dubai	ابو ظبي	1	2025-03-19 11:01:35	2025-04-18 18:17:55	\N	1
\.


--
-- Data for Name: cms_pages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cms_pages (id, title, content, created_at, updated_at, content_ar, status, title_ar) FROM stdin;
1	About us	<p>asdasda123asdasd</p>	2024-12-10 18:35:10	2025-03-20 15:14:27	<p>1112312312312312</p>	0	\N
4	Video guide	<p>xdfasdfas</p>	2025-03-28 17:11:41	2025-03-28 17:12:07	<p>asdfasdfasd</p>	1	\N
2	Terms and conditions	<p>Welcome to Luqia! Please read these Terms and Conditions ("Terms", "Terms and Conditions") carefully before using our mobile application (the "Service") operated by Luqia ("us", "we", or "our").</p><p>By downloading, accessing, or using the app, you agree to be bound by these Terms. If you disagree with any part, please do not use our Service.</p><p>1. Eligibility<br>You must be at least 18 years old and legally capable of entering into marriage under the laws of your country.</p><p>You agree to use this app only for lawful purposes, i.e., finding a suitable life partner, and not for casual dating or any form of exploitation.</p><p>2. User Responsibilities<br>You are responsible for the information you provide. All details must be accurate, truthful, and current.</p><p>You will not impersonate any person or create a fake profile.</p><p>You must respect other users and refrain from any form of harassment, hate speech, or abuse.</p><p>3. Account Security<br>Keep your login credentials confidential.</p><p>Notify us immediately of any unauthorized use of your account.</p><p>4. Content and Communication<br>You are solely responsible for the content you post (images, bio, etc.).</p><p>We reserve the right to remove content that violates our guidelines or local laws.</p><p>We do not conduct background checks; users must exercise caution in communication and meetings.</p><p>5. Subscription and Payments<br>Some features may require a paid subscription.</p><p>Fees, if any, will be clearly disclosed and are non-refundable unless required by applicable law.</p><p>6. Termination<br>We reserve the right to suspend or terminate your account if you violate our terms or engage in inappropriate conduct.</p><p>7. Privacy<br>Your personal data will be handled in accordance with our [Privacy Policy].</p><p>We do not share your information without consent, except as required by law.</p><p>8. Limitation of Liability<br>We are not responsible for any emotional, financial, or legal outcomes resulting from interactions via the app.</p><p>Use the app at your own risk. We are not liable for user behavior or third-party links.</p><p>9. Governing Law<br>These Terms shall be governed by and interpreted in accordance with the laws of [Insert Country, e.g., United Arab Emirates].</p><p>10. Changes to Terms<br>We may update these Terms from time to time. Continued use of the app means you accept the revised terms.</p><p>If you have any questions about these Terms, please contact us at [support@luqia.ae].</p>	2024-12-10 18:43:49	2025-07-14 05:32:09	<p>أهلاً بكم في لُقيا! يُرجى قراءة هذه الشروط والأحكام ("الشروط"، "الشروط والأحكام") بعناية قبل استخدام تطبيقنا المحمول ("الخدمة") الذي تُشغّله لُقيا ("نحن" أو "لنا").</p>	0	الشروط والأحكام
3	Privacy policy	<p>1. Information We Collect<br>We may collect the following types of personal information:</p><p>a. Personal Data:</p><p>Name, age, gender, date of birth</p><p>Contact details (email address, phone number)</p><p>Photos and profile information</p><p>Religion, caste, community, occupation, education, and family details</p><p>b. Usage Data:</p><p>Login logs, app usage, device type, IP address</p><p>Preferences and interests</p><p>c. Location Information:</p><p>With your permission, we may collect your device's location.</p><p>2. How We Use Your Information<br>We use your data to:</p><p>Create and manage your account</p><p>Show matches and facilitate communication</p><p>Improve and personalize user experience</p><p>Send notifications and promotional content</p><p>Respond to inquiries and provide customer support</p><p>Ensure legal compliance and app security</p><p>3. Sharing of Information<br>We do not sell your data. We may share your information with:</p><p>Other users (based on your profile visibility settings)</p><p>Service providers (e.g., for hosting or analytics)</p><p>Legal authorities if required by law</p><p>4. Data Security<br>We implement standard security measures to protect your personal data. However, no system is 100% secure.</p><p>5. Your Rights<br>You have the right to:</p><p>Access and correct your data</p><p>Delete your account</p><p>Withdraw consent (where applicable)</p><p>Opt-out of marketing communications</p><p>6. Children’s Privacy<br>Our app is not intended for users under the age of 18. We do not knowingly collect data from children.</p><p>7. Changes to This Policy<br>We may update this Privacy Policy. Changes will be posted within the app, and the date will be revised above.</p><p>&nbsp;</p>	2024-12-10 18:43:54	2025-07-14 05:32:39	<p>أهلاً بكم في لُقيا! يُرجى قراءة هذه الشروط والأحكام ("الشروط"، "الشروط والأحكام") بعناية قبل استخدام تطبيقنا المحمول ("الخدمة") الذي تُشغّله لُقيا ("نحن" أو "لنا").</p>	0	سياسة الخصوصية
7	Show and hide guidance	<p>Show and hide guidance</p>	2025-03-11 17:18:40	2025-07-14 05:18:36	<p>إظهار وإخفاء التوجيه</p>	1	Show and hide guidance
6	Blur guidance	<p>In this comprehensive <strong>guide</strong>, we will learn this skill, from understanding its significance to learning the step-by-step process, optimizing professiona</p>	2025-03-11 17:18:40	2025-07-14 05:30:08	<p>في هذا الدليل الشامل، سنتعلم هذه المهارة، بدءًا من فهم أهميتها وحتى تعلم العملية خطوة بخطوة، وتحسين الأداء المهني.</p>	1	صورة طمس
5	Photo guide	<p>During the Proposal:</p><p><strong>Candid Shots:</strong></p><p>Prioritize capturing the couple's natural expressions and reactions, rather than forcing posed shots.&nbsp;</p><p>&nbsp;</p><p><strong>Focus:</strong></p><p>Ensure the camera focuses on the couple's faces to capture their emotion.&nbsp;</p><p>&nbsp;</p><p><strong>Aperture:</strong></p><p>Use a wide aperture to create a shallow depth of field, which will help make the couple the focal point.&nbsp;</p>	2025-05-27 14:30:17	2025-07-14 05:30:32	<p>أثناء عرض الزواج:</p><p><strong>اللقطات العفوية:</strong></p><p>أعطِ الأولوية لالتقاط تعابير وردود فعل الزوجين الطبيعية، بدلًا من إجبارهما على التقاط صور مُصطنعة.</p><p><strong>التركيز:</strong></p><p>تأكد من تركيز الكاميرا على وجهي الزوجين لالتقاط مشاعرهما.</p><p><strong>فتحة العدسة:</strong></p><p>استخدم فتحة عدسة واسعة لإنشاء عمق مجال ضحل، مما يُساعد في جعل الزوجين محور التركيز.</p>	1	دليل الصور
\.


--
-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.companies (id, name, name_ar, brand_logo, description, description_ar, address, trade_license, trade_license_expiry, user_id, created_at, updated_at, deleted_at) FROM stdin;
13	Morton Ratliff LLC	Mcguire and Sandoval Associates	1734645382676496867ec33.png	Quas odit proident	Similique illum qui	Qui pariatur Qui na	1734645383676496873534e.pdf	2024-12-26	35	2024-12-19 21:56:23	2024-12-19 21:56:23	\N
\.


--
-- Data for Name: contact_us; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.contact_us (id, name, email, subject, message, created_at, updated_at) FROM stdin;
1	Alexandra Baker	mativyli@mailinator.com	Sit do in sint ratio	Magni doloribus non	2024-12-28 15:03:43	2024-12-28 15:03:43
\.


--
-- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.countries (id, name, created_at, updated_at, status, dial_code, name_ar, flag_icon) FROM stdin;
1	United Arab Emirates	2025-03-22 06:00:51	2025-03-24 11:52:09	1	+971	الإمارات العربية المتحدة	\N
2	Syria	2025-04-11 02:51:42	2025-04-11 02:51:42	1	+963	سورية	
\.


--
-- Data for Name: delivery_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.delivery_types (id, translation_type_id, name, description, price_type, price, status, created_at, updated_at) FROM stdin;
1	9	Standard	Standard	free	0.00	1	2024-12-30 15:01:54	2024-12-30 15:08:33
2	8	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 09:44:51	2024-12-31 14:48:17
3	7	Ciara Hull	Iure ipsam minima qu	free	0.00	1	2024-12-31 09:45:06	2024-12-31 09:45:26
4	7	Karly Pennington	Minus quis sunt dol	fixed	0.00	1	2024-12-31 09:45:15	2024-12-31 09:45:21
5	8	DIGITAL & PHYSICAL COPY	2-day express shipping via USPS. This price is for domestic shipping only, international shipping may incur a small fee.	fixed	12.00	1	2024-12-31 14:48:53	2024-12-31 14:48:53
6	11	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:50:28	2024-12-31 14:50:28
7	11	DIGITAL & PHYSICAL COPY	2-day express shipping via USPS. This price is for domestic shipping only, international shipping may incur a small fee.	fixed	12.00	1	2024-12-31 14:50:54	2024-12-31 14:50:54
8	5	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:51:37	2024-12-31 14:51:37
9	5	DIGITAL & PHYSICAL COPY	2-day express shipping via USPS. This price is for domestic shipping only, international shipping may incur a small fee.	fixed	12.00	1	2024-12-31 14:52:01	2024-12-31 14:52:01
10	4	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:56:19	2024-12-31 14:56:19
11	3	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:56:47	2024-12-31 14:56:47
\.


--
-- Data for Name: dress_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.dress_codes (id, name, name_ar, gender, image, status, deleted_at, created_at, updated_at) FROM stdin;
1	Hijabi	محجبة	Female	6815f4e7b9764_1746269415.png	1	\N	2025-05-03 10:48:15	2025-05-03 10:50:48
3	Burqa wearer	مرتدية البرقع	Female	6815f52f36877_1746269487.png	1	\N	2025-05-03 10:51:27	2025-05-03 10:51:27
4	Modern Wearer	مرتدية اللباس الغربي	Female	6815f58b0c1ac_1746269579.png	1	\N	2025-05-03 10:52:59	2025-05-03 10:52:59
2	Non-Hijabii	غير محجبة	Female	6815f4fe3adc7_1746269438.png	1	\N	2025-05-03 10:48:57	2025-05-29 08:19:33
5	Modern Wear	اللباس العصري	Male	68381886a7343_1748506758.png	0	\N	2025-05-29 08:19:18	2025-07-11 12:50:24
6	Religious wear	اللباس الديني	Male	683818f732b00_1748506871.png	0	\N	2025-05-29 08:21:11	2025-07-11 12:50:30
8	Emirati	إماراتي	Male	6838198df2fdf_1748507021.png	0	\N	2025-05-29 08:23:41	2025-07-11 12:50:35
7	Cultural Wear	الزي الثقافي	Male	68442bf592b2a_1749298165.jpg	0	\N	2025-05-29 08:23:02	2025-07-11 12:50:40
\.


--
-- Data for Name: educations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.educations (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
6	High School / Secondary	المدرسة الثانوية	1	\N	2025-05-05 06:16:41	2025-05-05 06:16:41
1	Bachelor's Degree	درجة البكالوريوس	1	\N	2025-05-03 10:20:00	2025-05-05 06:17:10
2	Master's Degree	درجة الماجستير	1	\N	2025-05-03 10:20:34	2025-05-05 06:17:40
3	Postgraduate Diploma	دبلوم الدراسات العليا	1	\N	2025-05-03 10:20:52	2025-05-05 06:18:13
4	Associate Degree	درجة الزمالة	1	\N	2025-05-03 10:21:23	2025-05-05 06:18:39
5	Lawyer	محامٍ	1	2025-05-05 06:19:02	2025-05-03 10:21:45	2025-05-05 06:19:02
7	Doctorate / PhD	درجة الدكتوراه	1	\N	2025-05-05 06:19:19	2025-05-05 06:19:19
\.


--
-- Data for Name: emirates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emirates (id, country_id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
1	1	Dubai	دبي	1	2025-05-01 05:13:38	2025-05-01 05:13:38	\N
2	1	Abu Dhabi	أبو ظبي	1	2025-05-01 05:14:32	2025-05-01 05:14:32	\N
3	1	Sharjah	الشارقة	1	2025-05-01 05:14:57	2025-05-01 05:14:57	\N
4	1	Ajman	عجمان	1	2025-05-01 05:15:23	2025-05-01 05:15:23	\N
5	1	Fujairah	الفجيرة	1	2025-05-01 05:15:43	2025-05-01 05:15:43	\N
6	1	Umm Al Quwain	أم القيوين	1	2025-05-01 05:16:13	2025-05-01 05:16:13	\N
7	1	Ras Al Khaimah	رأس الخيمة	1	2025-05-01 05:16:37	2025-05-01 05:16:37	\N
\.


--
-- Data for Name: event_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.event_types (id, name, status, created_at, updated_at) FROM stdin;
2	Sports	1	2024-12-10 17:55:00	2024-12-10 17:55:00
3	Music	1	2024-12-17 19:03:21	2024-12-17 19:03:21
\.


--
-- Data for Name: events; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.events (id, name, event_type_id, start_date, end_date, status, description, images, created_at, updated_at) FROM stdin;
2	testq	2	2024-04-20	2024-12-27	1	<p>asdd</p>	"[\\"1734335755675fdd0b842a5.jpg\\",\\"1734335763675fdd13d0457.jpg\\",\\"1734335769675fdd19d037d.png\\"]"	2024-12-11 20:51:39	2024-12-19 21:24:45
5	test123	2	2024-12-18	2024-12-20	1	<p>zxcssf</p>	"[\\"\\"]"	2024-12-17 20:43:55	2024-12-17 20:43:55
\.


--
-- 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: faqs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.faqs (id, question, answer, status, created_at, updated_at) FROM stdin;
2	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
3	Test	<h2>Where does it come from?</h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>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.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>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.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>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.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>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.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>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.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>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.adas</p>	1	2024-12-17 19:09:41	2024-12-17 19:25:53
4	asdasdas	<p>asdada</p>	1	2024-12-17 19:37:42	2024-12-17 19:37:42
5	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
6	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
7	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
8	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
9	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
10	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
11	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
12	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
13	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
14	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
15	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
16	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
17	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
18	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
\.


--
-- Data for Name: field_conditions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.field_conditions (id, category_id, attribute_id, operator, value, field_id, created_at, updated_at, target_field_id, source_field_id) FROM stdin;
16	14	8	equals	14	11	2025-04-22 12:08:47	2025-04-22 12:08:47	81	40
17	14	8	equals	15	12	2025-04-22 12:08:47	2025-04-22 12:08:47	82	40
\.


--
-- Data for Name: genetic_disease_variants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.genetic_disease_variants (id, genetic_disease_id, name, name_ar, created_at, updated_at, deleted_at) FROM stdin;
1	1	Alpha Thalassemia	الثلاسيميا الألفا	2025-05-29 11:55:58	2025-05-29 11:55:58	\N
2	1	Beta Thalassemia	الثلاسيميا البيتا	2025-05-29 11:55:58	2025-05-29 11:55:58	\N
3	1	Hemoglobin	أشكال الهيموغلوبين المرتبطة بالثلاسيميا	2025-05-29 11:55:58	2025-05-29 11:55:58	\N
4	2	Class I	الطفرات من الفئة الأولى	2025-05-29 11:57:40	2025-05-29 11:57:40	\N
5	2	Class II	الطفرات من الفئة الثانية	2025-05-29 11:57:40	2025-05-29 11:57:40	\N
6	4	NF1 (Type 1)	الورم الليفي العصبي من النوع الأول	2025-05-29 11:59:14	2025-05-29 11:59:14	\N
7	4	NF2 (Type 2)	الورم الليفي العصبي من النوع الثاني	2025-05-29 11:59:14	2025-05-29 11:59:14	\N
8	4	Schwannomatosis (SWN)	شفانوماتوزيس	2025-05-29 11:59:14	2025-05-29 11:59:14	\N
9	6	Autosomal Dominant PKD (ADPKD)	مرض الكلى المتعدد الكيسات السائد وراثيًا	2025-05-29 12:00:28	2025-05-29 12:00:28	\N
10	6	Autosomal Recessive PKD (ARPKD)	مرض الكلى المتعدد الكيسات المتنحي وراثيًا	2025-05-29 12:00:28	2025-05-29 12:00:28	\N
\.


--
-- Data for Name: genetic_diseases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.genetic_diseases (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
1	Thalassemia	الثلاسيميا	1	\N	2025-05-03 09:54:53	2025-05-03 09:54:53
2	Cystic Fibrosis	التليف الكيسي	1	\N	2025-05-03 09:55:19	2025-05-03 09:55:19
3	Down Syndrome	متلازمة داون	1	\N	2025-05-03 09:55:45	2025-05-03 09:55:45
4	Neurofibromatosis	الورم الليفي العصبي	1	\N	2025-05-03 09:56:14	2025-05-03 09:56:14
5	Spinal Muscular Atrophy (SMA)	ضمور العضلات الشوكي	1	\N	2025-05-03 09:57:16	2025-05-03 09:57:16
6	Polycystic Kidney Disease (PKD)	مرض الكلى المتعددة الكيسات	1	\N	2025-05-03 09:59:13	2025-05-03 09:59:13
\.


--
-- Data for Name: home_element_ads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_element_ads (id, ad_id, element_id, created_at, updated_at) FROM stdin;
1	4	3	\N	\N
2	4	4	\N	\N
3	4	10	\N	\N
4	1	14	\N	\N
5	187	15	\N	\N
6	186	16	\N	\N
7	185	17	\N	\N
8	184	17	\N	\N
9	8	5	\N	\N
10	54	5	\N	\N
11	10	5	\N	\N
\.


--
-- Data for Name: home_elements; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_elements (id, name, name_ar, type, item_id, sort_order, created_at, updated_at) FROM stdin;
1	Badge For Verification	شارة للتحقق	badge	1	0	2025-03-26 19:16:15	2025-04-24 12:50:29
8	Top Banner	Top Banner	banner	2	2	2025-04-08 06:35:56	2025-04-24 12:50:29
15	Top Featured Ad	إعلان مميز في الأعلى	section	1	3	2025-04-24 12:47:20	2025-04-24 12:50:29
16	Popular Cars	السيارات الشائعة	section	1	4	2025-04-24 12:48:12	2025-04-24 12:50:29
17	Top Ads	أهم الإعلانات	category	5	5	2025-04-24 12:50:08	2025-04-24 12:50:29
9	Bottom Banner	Bottom Banner	banner	1	6	2025-04-08 06:42:07	2025-04-24 12:50:29
5	Keep Looking For	Keep Looking For	category	10	1	2025-04-08 06:20:13	2025-04-24 12:51:09
\.


--
-- Data for Name: home_logos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_logos (id, name, status, image, created_at, updated_at, slug, name_ar) FROM stdin;
9	Weight	t	6842cd7ee39e3_1749208446.png	2025-03-11 17:18:40	2025-06-06 11:14:07	weight_count	وزن
8	Marital Status	t	6842cd456afa4_1749208389.png	2025-03-11 17:18:40	2025-06-06 11:13:09	marital_status_count	الحالة الاجتماعية
7	Smoke	t	68442ea5a8d4c_1749298853.jpg	2025-06-03 13:06:53	2025-06-07 12:20:53	smoke_count	تدخين
6	Dress Code	t	6844309046d24_1749299344.jpg	2025-06-03 13:06:27	2025-06-07 12:29:04	dress_code_count	قواعد اللباس
5	Sect	t	683efcc4c47ef_1748958404.png	2025-06-03 13:06:04	2025-06-03 14:00:52	sect_count	طائفة
4	Height	t	683efcd269e61_1748958418.png	2025-06-03 13:05:45	2025-06-03 14:01:05	height_count	ارتفاع
3	Profession	t	683efd0d93bca_1748958477.png	2025-06-03 13:05:22	2025-06-03 14:01:20	profession_count	مهنة
2	Religion	t	683efcfd4b3a0_1748958461.png	2025-06-03 13:04:58	2025-06-03 14:01:37	religion_count	دِين
1	Educations	t	683efd2427ab6_1748958500.png	2025-06-03 13:04:29	2025-07-13 15:06:22	education_count	تعليم
\.


--
-- Data for Name: home_page_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_page_settings (id, key, value, created_at, updated_at) FROM stdin;
1	why_choose_us_title	Effective Solutions for Your Document Needs	2025-01-01 00:05:20	2025-01-01 00:05:20
2	why_choose_us_content	At Tasheel, we provide tailored solutions for all your legal translation and documentation needs.Our team of experts ensures accuracy and compliance, guiding you through the complexities of legal processes. We prioritize efficiency and customer satisfaction, making the handling of your documents seamless and stress-free.	2025-01-01 00:05:20	2025-01-01 00:06:04
3	work_process_title	How it Work	2025-01-01 00:05:20	2025-01-01 00:08:46
4	work_process_content	Work Process	2025-01-01 00:05:20	2025-01-01 00:08:46
5	customer_experience_title	Customers Experience	2025-01-01 00:05:20	2025-01-01 00:08:46
6	insights_title	Find Out Our	2025-01-01 00:05:20	2025-01-01 00:08:46
7	insights_content	Insights & Intelligence	2025-01-01 00:05:20	2025-01-01 00:08:46
8	youtube_video_1	https://www.youtube.com/embed/-VK0axfge4A	2025-01-01 00:05:20	2025-01-01 00:31:06
9	youtube_video_2	https://www.youtube.com/embed/-VK0axfge4A	2025-01-01 00:05:20	2025-01-01 00:31:06
10	about_us_title	Your Tasks, Our Care	2025-01-01 01:11:28	2025-01-01 01:11:28
11	about_us_description	Tasheel is a leading provider of expert documentation and attestation services, specializing in legal attestation, translation, document processing assistance, and more. With years of experience and a commitment to accuracy and reliability, we ensure that your documents are authenticated and accepted worldwide. Our team of experts works diligently to provide efficient and hassle-free services, meeting your deadlines and exceeding your expectations. We specialize in bridging the gap between individuals, businesses, and governmental entities, providing expert legal translation, certified and notarized services, and support for embassy, consulate, municipality, and ministry processes. At Tasheel, we empower you to confidently and easily navigate legal and administrative challenges.	2025-01-01 01:11:28	2025-01-01 01:11:28
\.


--
-- Data for Name: insights; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.insights (id, name, title, content, image, status, created_at, updated_at) FROM stdin;
1	Evan Thomas	Workplace problems in your business?	Banter! Could “workplace banter” cause problems in your business? The short answer? Yes	1735688410677480dace1da.jpg	t	2024-12-31 23:40:10	2024-12-31 23:40:23
\.


--
-- Data for Name: job_batches; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.job_batches (id, name, total_jobs, pending_jobs, failed_jobs, failed_job_ids, options, cancelled_at, created_at, finished_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: known_languages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.known_languages (id, user_id, language_id, created_at, updated_at) FROM stdin;
2	50	4	\N	\N
4	157	2	\N	\N
7	171	2	\N	\N
8	173	2	\N	\N
9	173	5	\N	\N
10	173	4	\N	\N
11	174	2	\N	\N
12	174	4	\N	\N
14	174	5	\N	\N
15	176	2	\N	\N
16	177	2	\N	\N
17	177	4	\N	\N
18	177	6	\N	\N
19	179	3	\N	\N
20	179	5	\N	\N
21	176	3	\N	\N
22	176	4	\N	\N
23	176	5	\N	\N
24	176	6	\N	\N
25	176	7	\N	\N
26	176	8	\N	\N
27	181	2	\N	\N
28	181	3	\N	\N
29	181	4	\N	\N
30	181	5	\N	\N
31	50	2	\N	\N
32	50	3	\N	\N
33	179	2	\N	\N
34	179	4	\N	\N
35	179	6	\N	\N
36	189	2	\N	\N
37	189	3	\N	\N
38	189	4	\N	\N
39	189	6	\N	\N
40	189	5	\N	\N
41	193	2	\N	\N
42	193	3	\N	\N
43	194	4	\N	\N
44	194	3	\N	\N
45	194	5	\N	\N
46	195	2	\N	\N
47	195	3	\N	\N
48	195	5	\N	\N
49	196	2	\N	\N
50	196	3	\N	\N
51	197	2	\N	\N
52	197	3	\N	\N
53	197	4	\N	\N
54	197	5	\N	\N
55	200	2	\N	\N
56	200	3	\N	\N
57	202	2	\N	\N
58	202	3	\N	\N
59	204	2	\N	\N
60	204	3	\N	\N
61	204	4	\N	\N
62	204	5	\N	\N
63	204	6	\N	\N
64	204	8	\N	\N
65	204	7	\N	\N
66	209	2	\N	\N
67	210	2	\N	\N
68	210	3	\N	\N
69	210	4	\N	\N
70	210	5	\N	\N
71	211	2	\N	\N
72	211	3	\N	\N
74	211	5	\N	\N
78	212	3	\N	\N
79	212	2	\N	\N
80	215	3	\N	\N
81	216	3	\N	\N
82	216	2	\N	\N
83	53	1	\N	\N
84	53	4	\N	\N
85	53	7	\N	\N
86	211	4	\N	\N
87	211	6	\N	\N
88	211	7	\N	\N
89	216	4	\N	\N
90	216	5	\N	\N
91	216	6	\N	\N
92	216	7	\N	\N
93	214	2	\N	\N
94	214	3	\N	\N
95	214	4	\N	\N
96	219	2	\N	\N
97	219	3	\N	\N
98	219	4	\N	\N
99	223	3	\N	\N
100	223	8	\N	\N
101	224	2	\N	\N
102	224	3	\N	\N
103	224	4	\N	\N
104	224	5	\N	\N
105	224	6	\N	\N
106	224	7	\N	\N
108	215	5	\N	\N
109	222	2	\N	\N
110	222	3	\N	\N
111	222	4	\N	\N
112	222	8	\N	\N
113	222	7	\N	\N
114	222	5	\N	\N
115	222	6	\N	\N
116	215	6	\N	\N
117	226	2	\N	\N
118	226	3	\N	\N
119	229	2	\N	\N
120	229	3	\N	\N
121	230	2	\N	\N
122	230	3	\N	\N
123	230	4	\N	\N
124	230	5	\N	\N
125	231	3	\N	\N
126	231	2	\N	\N
127	231	4	\N	\N
128	232	2	\N	\N
129	233	2	\N	\N
130	233	3	\N	\N
131	233	4	\N	\N
132	234	5	\N	\N
133	234	2	\N	\N
134	234	3	\N	\N
135	237	3	\N	\N
136	237	2	\N	\N
137	237	4	\N	\N
138	237	5	\N	\N
139	237	8	\N	\N
140	238	2	\N	\N
141	238	3	\N	\N
142	238	6	\N	\N
143	238	4	\N	\N
144	238	5	\N	\N
145	239	2	\N	\N
146	239	3	\N	\N
147	239	4	\N	\N
148	192	1	\N	\N
149	192	4	\N	\N
150	192	7	\N	\N
151	240	2	\N	\N
152	240	3	\N	\N
153	240	4	\N	\N
154	241	2	\N	\N
155	241	3	\N	\N
156	241	4	\N	\N
157	242	2	\N	\N
158	242	3	\N	\N
159	243	3	\N	\N
160	243	2	\N	\N
161	243	6	\N	\N
162	244	3	\N	\N
163	246	2	\N	\N
164	246	3	\N	\N
165	245	3	\N	\N
166	245	2	\N	\N
167	247	3	\N	\N
168	247	2	\N	\N
169	247	8	\N	\N
170	248	8	\N	\N
171	248	3	\N	\N
172	249	2	\N	\N
173	249	3	\N	\N
174	249	5	\N	\N
175	249	6	\N	\N
176	249	4	\N	\N
177	250	2	\N	\N
178	252	2	\N	\N
179	253	2	\N	\N
180	253	3	\N	\N
181	253	4	\N	\N
182	254	2	\N	\N
183	254	3	\N	\N
184	254	4	\N	\N
185	262	2	\N	\N
186	262	3	\N	\N
187	262	4	\N	\N
188	263	2	\N	\N
189	263	3	\N	\N
190	264	4	\N	\N
191	264	3	\N	\N
192	264	2	\N	\N
193	267	2	\N	\N
194	267	3	\N	\N
195	268	2	\N	\N
196	268	3	\N	\N
197	270	2	\N	\N
198	270	3	\N	\N
199	272	2	\N	\N
200	272	3	\N	\N
\.


--
-- Data for Name: languages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.languages (id, name, name_ar, code, status, created_at, updated_at, deleted_at) FROM stdin;
1	Malachi Faulkner	Alisa Lun	rn	1	2025-05-03 05:54:18	2025-05-03 05:54:51	2025-05-03 05:54:51
2	Arabic	العربية	ar	1	2025-05-05 06:21:05	2025-05-05 06:21:05	\N
3	English	الإنجليزية	en	1	2025-05-05 06:21:31	2025-05-05 06:21:31	\N
4	French	الفرنسية	fr	1	2025-05-05 06:21:53	2025-05-05 06:21:53	\N
5	Spanish	الإسبانية	es	1	2025-05-05 06:22:24	2025-05-05 06:22:24	\N
6	German	الألمانية	de	1	2025-05-05 06:22:44	2025-05-05 06:22:44	\N
7	Chinese	الصينية	zh	1	2025-05-05 06:23:12	2025-05-05 06:23:12	\N
8	Urdu	الأردية	ur	1	2025-05-05 06:23:39	2025-05-05 06:23:39	\N
\.


--
-- Data for Name: looking_ads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.looking_ads (id, ad_id, category_id, created_at, updated_at) FROM stdin;
1	4	5	2025-03-27 04:31:48	2025-03-27 04:31:48
\.


--
-- Data for Name: main_notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.main_notifications (id, title, content, generated_by, image, created_at, updated_at) FROM stdin;
1	This is Test	Not every thing free	1	6846e683190ca_1749476995.png	2025-06-09 13:49:55	2025-06-09 13:49:55
2	test	test	1	6846ebacc9a87_1749478316.png	2025-06-09 14:11:57	2025-06-09 14:11:57
3	Hi	Hi	1	684943ba4aaf7_1749631930.jpg	2025-06-11 08:52:10	2025-06-11 08:52:10
4	Hi	Hi	1	6849441b0d2f7_1749632027.jpg	2025-06-11 08:53:47	2025-06-11 08:53:47
5	Buy 1 get 1 Free	Buy 1 get 1 Free	1	68494493e50cd_1749632147.png	2025-06-11 08:55:48	2025-06-11 08:55:48
6	teste	teste	1	6849458ecfef4_1749632398.png	2025-06-11 08:59:59	2025-06-11 08:59:59
7	welcome to luquia	Our app is not intended for users under the age of 18. We do not knowingly collect data from children.	1	6871f7c17af24_1752299457.png	2025-07-12 05:50:57	2025-07-12 05:50:57
8	Membership 50off	Membership 50off on premium users resubscription	1	68723d8594f3d_1752317317.png	2025-07-12 10:48:37	2025-07-12 10:48:37
9	free Standard membership	free Standard membership today only. Join us and search your matches	1	687242313773b_1752318513.jpg	2025-07-12 11:08:33	2025-07-12 11:08:33
10	50off on subscription	50off on subscription. beome a premium member	1	6873702ac9f74_1752395818.png	2025-07-13 08:36:58	2025-07-13 08:36:58
11	50 off on premium subscription	50 off on premium subscription. become a member today	1	6873708d5003a_1752395917.png	2025-07-13 08:38:37	2025-07-13 08:38:37
12	first user 40off	first user 40off	1	687370ce5cb3b_1752395982.jpg	2025-07-13 08:39:42	2025-07-13 08:39:42
13	new test	new test	1	68738b6b751e1_1752402795.png	2025-07-13 10:33:15	2025-07-13 10:33:15
14	hi	hi	1	68738be23f36a_1752402914.png	2025-07-13 10:35:14	2025-07-13 10:35:14
15	Hamid	asfadsfd	1	6873addb38a33_1752411611.png	2025-07-13 13:00:11	2025-07-13 13:00:11
16	dsfsdf	dsfsd	1	6873ae1b6397a_1752411675.png	2025-07-13 13:01:15	2025-07-13 13:01:15
17	jjdsfsd	dsfksdk	1	6873ae4641794_1752411718.png	2025-07-13 13:01:58	2025-07-13 13:01:58
18	hhhhhhhh	jkkkk	1	6873b29e882a4_1752412830.png	2025-07-13 13:20:30	2025-07-13 13:20:30
19	hhhhhhjj	jjjjjj	1	6873b5e728860_1752413671.png	2025-07-13 13:34:31	2025-07-13 13:34:31
\.


--
-- Data for Name: marital_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.marital_statuses (id, name, name_ar, status, deleted_at, created_at, updated_at, show_wife_children_option, gender) FROM stdin;
5	Engaged	مخطوب / مخطوبة	1	2025-05-29 07:32:13	2025-05-03 10:17:17	2025-05-29 07:32:13	f	\N
7	In a Relationship	في علاقة	0	\N	2025-05-03 10:17:53	2025-05-29 07:32:23	f	\N
2	Single	أعزب / عزباء	1	\N	2025-05-03 10:16:16	2025-05-31 08:53:25	f	Female
1	Married	متزوج	1	\N	2025-05-03 09:47:14	2025-05-31 08:53:41	t	Male
4	Widowed	أرمل / أرملة	1	\N	2025-05-03 10:17:01	2025-05-31 08:53:51	t	Female
6	Separated	منفصل / منفصلة	1	\N	2025-05-03 10:17:33	2025-05-31 08:54:12	f	Male
3	Divorced	مطلق / مطلقة	1	\N	2025-05-03 10:16:45	2025-05-31 08:54:24	t	Female
8	Single	Single	1	\N	2025-06-04 07:45:12	2025-06-04 07:45:12	f	Male
\.


--
-- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.migrations (id, migration, batch) FROM stdin;
1	0001_01_01_000000_create_users_table	1
2	0001_01_01_000001_create_cache_table	1
3	0001_01_01_000002_create_jobs_table	1
4	2024_12_04_121725_create_companies_table	1
5	2024_12_04_174007_create_permission_tables	1
11	2024_12_05_164934_create_packages_table	2
12	2024_12_05_164957_create_packages_addons_table	2
19	2024_12_05_231725_create_challenges_table	3
20	2024_12_05_232702_create_challenges_companies_table	3
21	2024_12_05_191748_add_fields_to_users_table	4
22	2024_12_10_063233_remove_columns_from_companies_table	5
25	2024_12_10_155646_add_country_id_and_status_to_cities_table	8
26	2024_12_10_165027_create_target_types_table	9
27	2024_12_10_173815_create_event_types_table	10
28	2024_12_10_182826_create_pages_table	11
29	2024_12_10_094132_add_soft_deletes_to_users_table	12
30	2024_12_10_131649_add_soft_deletes_to_challenges_table	12
31	2024_12_11_102429_create_faqs_table	13
32	2024_12_11_104518_create_faqs_table	14
33	2024_12_11_190634_create_events_table	15
34	2024_12_12_171650_add_role_id_to_users_table	16
35	2024_12_16_031035_create_target_types_company_table	17
38	2024_12_22_025151_create_site_settings_table	20
39	2024_12_22_202921_create_sliders_table	21
40	2024_12_22_202959_create_slider_buttons_table	22
41	2024_12_22_204258_create_sliders_table	23
42	2024_12_22_204302_create_slider_buttons_table	23
43	2024_12_24_110324_create_services_table	24
44	2024_12_24_110552_create_service_details_table	25
45	2024_12_24_110641_create_service_faqs_table	26
46	2024_12_25_144910_add_images_and_prices_to_services_table	27
47	2024_12_25_175336_create_quotes_table	28
48	2024_12_25_194520_add_translation_price_to_languages_table	29
49	2024_12_25_203316_create_services_types_table	30
50	2024_12_25_204612_create_services_types_table	31
51	2024_12_26_100307_recreate_services_types_table	32
52	2024_12_26_142627_create_service_pricing_table	33
53	2024_12_26_144059_create_service_pricing_table	34
54	2024_12_26_151334_create_service_pricing_table	35
55	2024_12_26_154043_recreate_services_types_table	36
56	2024_12_26_164628_create_translation_types_table	37
57	2024_12_27_213922_create_bookings_table	38
58	2024_12_28_091000_add_delivery_type_and_status_to_bookings_table	39
59	2024_12_28_145944_create_contact_us_table	40
60	2024_12_30_093601_create_translation_types_categories_table	41
61	2024_12_30_142149_create_delivery_types_table	42
62	2024_12_30_145032_create_delivery_types_table	43
63	2024_12_30_145523_create_delivery_types_table	44
64	2024_12_30_145932_create_delivery_types_table	45
65	2024_12_31_103127_add_columns_to_translation_types_categories_table	46
66	2024_12_31_173752_add_fields_to_bookings_table	47
67	2024_12_31_201549_create_why_choose_us_table	48
68	2024_12_31_204641_create_work_process_table	49
69	2024_12_31_224105_create_home_logos_table	50
70	2024_12_31_225708_create_reviews_table	51
71	2024_12_31_232951_create_insights_table	52
72	2024_12_31_235754_create_home_page_settings_table	53
73	2025_01_01_104657_alter_add_fileds_to_cms_pages	54
74	2025_01_01_115229_alter_add_fileds_to_cms_pages	54
76	2025_01_01_203806_add_delivery_method_price_and_vat_columns_to_bookings_table	55
77	2025_01_29_095444_create_service_atributes_table	56
78	2025_01_29_101737_create_service_atributes_table	57
79	2025_01_31_013415_create_service_atributes_value_table	58
84	2025_02_01_083459_add_bigint_field_id_to_service_booking_fields	63
85	2025_02_03_080934_add_target_field_id_to_field_conditions_table	64
86	2025_02_04_091806_create_services_bookings_table	65
88	2025_02_05_161345_modify_value_nullable_in_services_booking_fields	66
89	2025_02_05_162722_add_field_label_to_services_booking_fields	67
90	2025_02_05_163749_add_booking_id_to_services_bookings	68
91	2025_02_08_110950_add_billing_details_to_services_bookings	69
92	2025_02_08_145535_add_total_to_services_bookings_table	70
93	2025_02_11_144933_add_price_to_service_atributes_values	71
94	2025_02_11_153928_add_status_to_services_booking_table	72
98	2025_03_17_104054_create_categories_table	76
99	2025_01_29_101737_create_category_atributes_table	77
100	2025_01_31_013415_create_category_atributes_value_table	78
101	2025_01_31_031313_create_category_fields_table	79
102	2025_01_31_172442_create_field_conditions_table	80
105	2024_12_05_130018_create_cities_table	81
106	2025_03_19_110943_create_ads_table	82
107	2025_02_04_091921_create_ad_fields_table	83
110	2025_03_19_161754_create_ad_plans_table	86
111	2025_03_20_105759_create_promo_codes_table	87
112	2025_03_19_161432_create_pricing_plans_table	88
113	2025_03_19_161456_create_plan_durations_table	89
114	2024_12_05_125935_create_countries_table	90
115	2024_12_10_113225_add_status_to_countries_table	91
116	2024_12_16_143622_add_dial_code_to_countries_table	92
117	2025_03_22_123445_add_fields_in_users_table	93
118	2025_03_24_054249_create_nationalities_table	94
119	2025_03_24_074100_add_icon_field_in_parent_categories_table	95
120	2025_03_24_083100_alter_field_in_pages_table	96
121	2025_03_24_104842_add_field_in_cities_table	97
122	2025_03_24_105241_add_field_in_countries_table	98
123	2025_03_24_130954_add_field_in_parent_categories_table	99
125	2025_03_25_090550_create_popular_ads_tables	101
132	2025_03_25_090629_create_banners_table	102
133	2025_03_25_142837_create_sliders_table	103
134	2025_03_25_144456_create_slider_items_table	104
135	2025_03_26_121739_create_looking_ads_table	105
136	2025_03_26_183358_create_home_elements_table	106
137	2025_03_27_150718_add_field_in_banners_table	107
138	2025_03_27_161216_create_home_element_ads_table	108
139	2025_03_28_153919_create_verification_requests_table	109
140	2025_03_28_154516_add_field_in_users_table	110
141	2025_04_08_164528_add_fields_in_ads_table	111
142	2025_04_09_170822_drop_column_from_banners_table	112
143	2025_04_09_171259_drop_column_from_sliders_table	113
144	2025_04_10_083428_add_fields_in_category_fields_table	114
146	2025_04_03_115644_add_fields_in_users_table	116
147	2025_03_29_102925_create_personal_access_tokens_table	117
148	2025_04_10_101059_add_fields_in_categories_table	118
149	2025_04_11_073400_add_fields_in_category_fields_table	119
150	2025_04_11_100851_add_field_in_ad_fields_table	120
151	2025_04_11_122326_add_field_in_category_fields_table	121
152	2025_04_12_042242_add_field_in_ads_table	122
153	2025_04_12_065352_create_ad_images_table	123
154	2025_04_14_135759_alter_fields_in_ads_table	124
155	2025_04_16_062850_create_payment_reports_table	125
156	2025_04_16_064647_add_fields_in_categories_table	126
157	2025_04_16_080645_create_motor_makes_table	127
158	2025_04_16_080708_create_motor_models_table	128
161	2025_04_18_175643_add_fields_in_ad_plans_table	131
162	2025_04_18_180259_add_fields_in_ads_table	132
163	2025_04_07_132259_add_field_in_promo_codes_table	133
164	2025_04_21_050509_add_field_in_pages_table	134
165	2025_04_21_065453_create_property_amenities_table	135
166	2025_04_22_120430_add_field_in_field_conditions_table	136
167	2025_04_22_200519_create_support_tickets_table	137
168	2025_04_22_210622_create_ad_requests_table	138
170	2025_04_23_173947_create_ad_reports_table	140
171	2024_12_05_125953_create_emirates_table	141
172	2024_12_21_090718_create_languages_table	142
173	2025_05_02_155946_create_sects_table	143
174	2025_05_02_160003_create_educations_table	144
175	2025_05_02_160018_create_professions_table	145
176	2025_05_02_160043_create_marital_statuses_table	146
178	2025_05_02_160115_create_genetic_diseases_table	148
179	2025_05_02_160138_create_activities_table	149
180	2025_05_02_160147_create_sports_table	150
181	2025_05_02_160056_create_dress_codes_table	151
182	2025_05_03_095556_update_users_table	152
183	2025_05_03_130445_create_user_details_table	153
184	2025_05_03_131539_create_known_languages_table	154
185	2025_05_03_131559_create_user_children_table	155
186	2025_05_03_131608_create_user_activites_table	156
187	2025_05_03_131628_create_user_sports_table	157
188	2025_05_03_132300_create_user_prefrences_table	158
189	2025_05_03_145345_create_user_plans_table	159
190	2025_05_03_172034_add_field_in_sports_table	160
191	2025_05_03_172115_add_field_in_activities_table	161
192	2025_05_12_094852_create_user_requests_table	162
193	2025_05_14_111123_add_field_in_user_plans_table	163
194	2025_05_14_115002_create_user_matches_table	164
195	2025_05_15_142001_create_user_images_table	165
196	2025_04_22_053954_create_notifications_table	166
197	2025_04_18_172441_add_fields_in_payment_reports_table	167
198	2025_03_29_162634_create_temp_users_table	168
199	2025_05_20_192726_add_field_in_users_table	169
200	2025_05_21_083546_add_field_in_user_plans_table	170
201	2025_04_18_134113_create_temp_orders_table	171
202	2025_05_21_072633_create_user_notification_settin_table	172
203	2025_05_21_094140_add_multiple_column_to_users_table	173
204	2025_05_21_110412_add_fields_in_user_preferences_table	174
205	2025_05_21_142704_add_multiple_columns_to_user_preferences_table	175
206	2025_05_22_090533_add_show_wife_child_option_to_marital_status_table	176
207	2025_05_22_124226_create_user_connection_table	177
208	2025_05_23_141025_add_field_in_nationalities_table	178
209	2025_05_24_055343_add_field_in_pricing_plans_table	179
210	2025_05_24_060638_add_field_in_user_plans_table	180
211	2025_03_25_090533_create_badges_tables	181
212	2025_05_26_150630_add_field_in_users_table	182
213	2025_05_27_073319_create_user_diseases_table	183
214	2025_05_27_082106_create_parent_approval_table	184
215	2025_05_27_095931_add_fields_in_temp_users_table	185
216	2025_05_27_154857_create_user_dress_codes_table	186
217	2025_05_27_155118_create_user_marital_statuses_table	187
218	2025_05_28_064117_add_field_in_users_table	188
219	2025_05_28_064126_add_field_in_user_preferences_table	189
220	2025_05_28_073152_alter_fields_in_parent_approvals_table	190
221	2025_05_28_074831_add_fields_in_users_table	191
222	2025_05_28_100826_add_field_in_users_table	192
223	2025_05_16_022948_create_user_connections_table	193
225	2025_05_26_151814_create_user_blocks_table	195
226	2025_05_26_151851_create_user_reports_table	196
227	2025_05_29_072530_create_genetic_disease_variants_table	197
228	2025_05_29_103626_add_field_in_user_diseases_table	198
229	2025_05_27_105607_add_hide_image_to_request_list	199
230	2025_04_23_172549_create_ad_report_types_table	200
231	2025_05_30_140702_add_gender_field_in_marital_statuses_table	201
232	2025_05_30_101244_add_reason_id_coulmn_to_user_reports_table	202
233	2025_06_03_140943_add_field_in_home_logos_table	203
234	2025_06_04_082101_create_user_disease_variants_table	204
235	2025_06_04_145946_create_user_sects_table	205
236	2025_06_04_145954_create_user_educations_table	206
237	2025_06_04_150007_create_user_professions_table	207
238	2025_06_06_074918_add_make_colum_integer	208
239	2025_06_09_133126_add_field_in_notifications_table	209
240	2025_06_09_133253_create_main_notifications_table	210
241	2024_12_10_144153_add_status_to_emirates_table	211
242	2025_07_13_170152_alter_add_name_ar_to_home_logos	212
\.


--
-- 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;
1	App\\Models\\User	1
2	App\\Models\\User	2
2	App\\Models\\User	3
2	App\\Models\\User	4
2	App\\Models\\User	5
2	App\\Models\\User	6
2	App\\Models\\User	13
2	App\\Models\\User	16
2	App\\Models\\User	23
2	App\\Models\\User	32
2	App\\Models\\User	34
2	App\\Models\\User	35
2	App\\Models\\User	36
2	App\\Models\\User	44
2	App\\Models\\User	47
2	App\\Models\\User	48
2	App\\Models\\User	91
2	App\\Models\\User	218
2	App\\Models\\User	49
\.


--
-- Data for Name: motor_makes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.motor_makes (id, name, icon, created_at, updated_at) FROM stdin;
1	Aston Martin	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
2	Audi	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
3	Bentley	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
4	BMW	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
5	Alfa Romeo	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
6	Baic	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
7	Alpina	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
8	Ashok	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
9	Artega	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
10	Cadillac	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
11	Chevrolet	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
12	Chery	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
13	Brilliance	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
14	Buick	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
15	Caterham	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
16	Changan	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
17	BYD	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
18	Bugatti	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
19	Chrysler	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
20	Citroen	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
21	China Automobile	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
22	Dacia	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
23	CMC	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
24	Daihatsu	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
25	Dodge	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
26	Ferrari	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
27	Fiat	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
28	Daewoo	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
29	Eicher	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
30	Dongfeng	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
31	Ford	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
32	GMC	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
33	Geely	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
34	Great Wall	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
35	GAC	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
36	Fisker	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
37	Foton	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
38	Honda	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
39	Hyundai	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
40	Infiniti	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
41	Hummer	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
42	Jaguar	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
43	Jeep	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
44	Kia	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
45	Lada	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
46	Lamborghini	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
47	Koenigsegg	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
48	Isuzu	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
49	Iveco	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
50	Jinbei	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
51	JAC	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
52	King Long	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
53	International 	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
54	KTM	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
55	Land Rover	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
56	Lexus	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
57	Lincoln	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
58	Maserati	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
59	Mazda	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
60	Maybach	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
61	Luxgen	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
62	Mahindra	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
63	Landwind	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
64	Lancia	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
65	Lotus	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
66	Mercedes-Benz	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
67	Mini	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
68	MG	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
69	Mclaren	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
70	Mercury	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
71	Mitsubishi	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
72	Nissan	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
73	Morgan	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
74	Mini (BMW)	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
75	Oldsmobile	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
76	Noble	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
77	Peugeot	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
78	Porsche	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
79	RAM	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
80	Opel	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
81	Proton	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
82	Pontiac	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
83	Pagani	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
84	PGO	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
85	Oullim	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
86	Renault	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
87	Rolls Royce	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
88	SAAB	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
89	Ssangyong	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
90	Seat	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
91	Subaru	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
92	Spyker	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
93	Skoda	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
94	Smart	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
95	Rover	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
96	Suzuki	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
97	Toyota	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
98	Volkswagen	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
99	TATA	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
100	UAZ	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
101	Volvo	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
102	Wiesmann	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
103	Tesla	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
104	ZNA	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
\.


--
-- Data for Name: motor_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.motor_models (id, make_id, name, created_at, updated_at) FROM stdin;
1	1	DB9	2025-04-16 13:35:53	2025-04-16 13:35:53
2	1	Vantage	2025-04-16 13:35:53	2025-04-16 13:35:53
3	2	A1	2025-04-16 13:35:53	2025-04-16 13:35:53
4	2	A3	2025-04-16 13:35:53	2025-04-16 13:35:53
5	2	A5	2025-04-16 13:35:53	2025-04-16 13:35:53
6	2	A6	2025-04-16 13:35:53	2025-04-16 13:35:53
7	2	A7	2025-04-16 13:35:53	2025-04-16 13:35:53
8	2	A8	2025-04-16 13:35:53	2025-04-16 13:35:53
9	2	Audi TT	2025-04-16 13:35:53	2025-04-16 13:35:53
10	2	Q3	2025-04-16 13:35:53	2025-04-16 13:35:53
11	2	Q5	2025-04-16 13:35:53	2025-04-16 13:35:53
12	2	Q7	2025-04-16 13:35:53	2025-04-16 13:35:53
13	2	R8	2025-04-16 13:35:53	2025-04-16 13:35:53
14	2	RS4	2025-04-16 13:35:53	2025-04-16 13:35:53
15	2	RS5	2025-04-16 13:35:53	2025-04-16 13:35:53
16	2	RS6	2025-04-16 13:35:53	2025-04-16 13:35:53
17	2	RS7	2025-04-16 13:35:53	2025-04-16 13:35:53
18	2	S3	2025-04-16 13:35:53	2025-04-16 13:35:53
19	2	S5	2025-04-16 13:35:53	2025-04-16 13:35:53
20	2	S6	2025-04-16 13:35:53	2025-04-16 13:35:53
21	2	S7	2025-04-16 13:35:53	2025-04-16 13:35:53
22	2	S8	2025-04-16 13:35:53	2025-04-16 13:35:53
23	3	Arnage	2025-04-16 13:35:53	2025-04-16 13:35:53
24	3	Continental	2025-04-16 13:35:53	2025-04-16 13:35:53
25	3	Continental GT	2025-04-16 13:35:53	2025-04-16 13:35:53
26	3	Continental GTC	2025-04-16 13:35:53	2025-04-16 13:35:53
27	3	Flying Spur	2025-04-16 13:35:53	2025-04-16 13:35:53
28	3	Mulsanne	2025-04-16 13:35:53	2025-04-16 13:35:53
29	4	1-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
30	4	2-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
31	5	146	2025-04-16 13:35:53	2025-04-16 13:35:53
32	5	147	2025-04-16 13:35:53	2025-04-16 13:35:53
33	5	156	2025-04-16 13:35:53	2025-04-16 13:35:53
34	5	166	2025-04-16 13:35:53	2025-04-16 13:35:53
35	5	33	2025-04-16 13:35:53	2025-04-16 13:35:53
36	5	4C	2025-04-16 13:35:53	2025-04-16 13:35:53
37	5	8C Competizione	2025-04-16 13:35:53	2025-04-16 13:35:53
38	5	8C Competizione Coupe	2025-04-16 13:35:53	2025-04-16 13:35:53
39	5	8C Spider	2025-04-16 13:35:53	2025-04-16 13:35:53
40	5	90	2025-04-16 13:35:53	2025-04-16 13:35:53
41	6	A1	2025-04-16 13:35:53	2025-04-16 13:35:53
42	2	A2	2025-04-16 13:35:53	2025-04-16 13:35:53
43	2	A3 E-Tron	2025-04-16 13:35:53	2025-04-16 13:35:53
44	2	A4 All Road Quattro	2025-04-16 13:35:53	2025-04-16 13:35:53
45	2	A4 All Road Quattro	2025-04-16 13:35:53	2025-04-16 13:35:53
46	6	A5	2025-04-16 13:35:53	2025-04-16 13:35:53
47	2	A6 All Road Quattro	2025-04-16 13:35:53	2025-04-16 13:35:53
48	3	Azure	2025-04-16 13:35:53	2025-04-16 13:35:53
49	7	B10	2025-04-16 13:35:53	2025-04-16 13:35:53
50	7	B3	2025-04-16 13:35:53	2025-04-16 13:35:53
51	7	B3 (2007)	2025-04-16 13:35:53	2025-04-16 13:35:53
52	7	B3 (2013)	2025-04-16 13:35:53	2025-04-16 13:35:53
53	7	B4	2025-04-16 13:35:53	2025-04-16 13:35:53
54	7	B5	2025-04-16 13:35:53	2025-04-16 13:35:53
55	7	B5 (2010)	2025-04-16 13:35:53	2025-04-16 13:35:53
56	7	B6	2025-04-16 13:35:53	2025-04-16 13:35:53
57	7	B6 (2012)	2025-04-16 13:35:53	2025-04-16 13:35:53
58	7	B7	2025-04-16 13:35:53	2025-04-16 13:35:53
59	7	B7 (2009)	2025-04-16 13:35:53	2025-04-16 13:35:53
60	5	Brera	2025-04-16 13:35:53	2025-04-16 13:35:53
61	3	Brooklands	2025-04-16 13:35:53	2025-04-16 13:35:53
62	3	Continental Flying Spur	2025-04-16 13:35:53	2025-04-16 13:35:53
63	3	Continental Super Sports	2025-04-16 13:35:53	2025-04-16 13:35:53
64	7	D10	2025-04-16 13:35:53	2025-04-16 13:35:53
65	1	Cygnet	2025-04-16 13:35:53	2025-04-16 13:35:53
66	7	D3	2025-04-16 13:35:53	2025-04-16 13:35:53
67	7	D3 (2013)	2025-04-16 13:35:53	2025-04-16 13:35:53
68	7	D4	2025-04-16 13:35:53	2025-04-16 13:35:53
69	7	D5	2025-04-16 13:35:53	2025-04-16 13:35:53
70	1	DB7	2025-04-16 13:35:53	2025-04-16 13:35:53
71	1	DBS	2025-04-16 13:35:53	2025-04-16 13:35:53
72	8	Falcon	2025-04-16 13:35:53	2025-04-16 13:35:53
73	9	GT	2025-04-16 13:35:53	2025-04-16 13:35:53
74	5	GT	2025-04-16 13:35:53	2025-04-16 13:35:53
75	5	GTV	2025-04-16 13:35:53	2025-04-16 13:35:53
76	8	Leyland	2025-04-16 13:35:53	2025-04-16 13:35:53
77	5	Mito	2025-04-16 13:35:53	2025-04-16 13:35:53
78	3	New Continental GT	2025-04-16 13:35:53	2025-04-16 13:35:53
79	3	New Continental GTC	2025-04-16 13:35:53	2025-04-16 13:35:53
80	1	ONE-77	2025-04-16 13:35:53	2025-04-16 13:35:53
81	7	Roadster	2025-04-16 13:35:53	2025-04-16 13:35:53
82	7	Roadster S	2025-04-16 13:35:53	2025-04-16 13:35:53
83	2	RS3	2025-04-16 13:35:53	2025-04-16 13:35:53
84	2	RS8	2025-04-16 13:35:53	2025-04-16 13:35:53
85	2	S4	2025-04-16 13:35:53	2025-04-16 13:35:53
86	5	Spider	2025-04-16 13:35:53	2025-04-16 13:35:53
87	2	TT	2025-04-16 13:35:53	2025-04-16 13:35:53
88	2	TTS	2025-04-16 13:35:53	2025-04-16 13:35:53
89	3	Turbo	2025-04-16 13:35:53	2025-04-16 13:35:53
90	1	V12 Vantage	2025-04-16 13:35:53	2025-04-16 13:35:53
91	1	V8 Vantage	2025-04-16 13:35:53	2025-04-16 13:35:53
92	1	Virage	2025-04-16 13:35:53	2025-04-16 13:35:53
93	7	XD3	2025-04-16 13:35:53	2025-04-16 13:35:53
94	1	Zagato	2025-04-16 13:35:53	2025-04-16 13:35:53
95	1	Rapide	2025-04-16 13:35:53	2025-04-16 13:35:53
96	1	Vanquish	2025-04-16 13:35:53	2025-04-16 13:35:53
97	4	3-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
98	4	4-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
99	4	5-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
100	4	6-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
101	4	7-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
102	4	M2	2025-04-16 13:35:53	2025-04-16 13:35:53
103	4	M3	2025-04-16 13:35:53	2025-04-16 13:35:53
104	4	M4	2025-04-16 13:35:53	2025-04-16 13:35:53
105	4	M5	2025-04-16 13:35:53	2025-04-16 13:35:53
106	4	M6	2025-04-16 13:35:53	2025-04-16 13:35:53
107	4	X 4	2025-04-16 13:35:53	2025-04-16 13:35:53
108	4	X1	2025-04-16 13:35:53	2025-04-16 13:35:53
109	4	X3	2025-04-16 13:35:53	2025-04-16 13:35:53
110	4	X4	2025-04-16 13:35:53	2025-04-16 13:35:53
111	4	X5	2025-04-16 13:35:53	2025-04-16 13:35:53
112	4	X5 M	2025-04-16 13:35:53	2025-04-16 13:35:53
113	4	X6	2025-04-16 13:35:53	2025-04-16 13:35:53
114	4	X6 M	2025-04-16 13:35:53	2025-04-16 13:35:53
115	10	ATS	2025-04-16 13:35:53	2025-04-16 13:35:53
116	10	ATS-V	2025-04-16 13:35:53	2025-04-16 13:35:53
117	10	CTS	2025-04-16 13:35:53	2025-04-16 13:35:53
118	10	CTS-V	2025-04-16 13:35:53	2025-04-16 13:35:53
119	10	Escalade	2025-04-16 13:35:53	2025-04-16 13:35:53
120	10	XTS	2025-04-16 13:35:53	2025-04-16 13:35:53
121	11	Camaro	2025-04-16 13:35:53	2025-04-16 13:35:53
122	11	Caprice	2025-04-16 13:35:53	2025-04-16 13:35:53
123	11	Captiva	2025-04-16 13:35:53	2025-04-16 13:35:53
124	4	2er Gran Tourer	2025-04-16 13:35:53	2025-04-16 13:35:53
125	4	3er GT	2025-04-16 13:35:53	2025-04-16 13:35:53
126	4	5er GT	2025-04-16 13:35:53	2025-04-16 13:35:53
127	10	62	2025-04-16 13:35:53	2025-04-16 13:35:53
128	4	8-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
129	12	A11 WindCloud	2025-04-16 13:35:53	2025-04-16 13:35:53
130	12	Arrizo 7	2025-04-16 13:35:53	2025-04-16 13:35:53
131	11	Astro	2025-04-16 13:35:53	2025-04-16 13:35:53
132	11	Avalanche	2025-04-16 13:35:53	2025-04-16 13:35:53
133	11	Aveo	2025-04-16 13:35:53	2025-04-16 13:35:53
134	11	Aveo5	2025-04-16 13:35:53	2025-04-16 13:35:53
135	11	Barina	2025-04-16 13:35:53	2025-04-16 13:35:53
136	11	Blazer	2025-04-16 13:35:53	2025-04-16 13:35:53
137	10	BLS	2025-04-16 13:35:53	2025-04-16 13:35:53
138	13	BS4	2025-04-16 13:35:53	2025-04-16 13:35:53
139	13	BS6	2025-04-16 13:35:53	2025-04-16 13:35:53
140	11	Caravan	2025-04-16 13:35:53	2025-04-16 13:35:53
141	10	Catera	2025-04-16 13:35:53	2025-04-16 13:35:53
142	11	Cavalier	2025-04-16 13:35:53	2025-04-16 13:35:53
143	14	Century	2025-04-16 13:35:53	2025-04-16 13:35:53
144	15	Classic 7	2025-04-16 13:35:53	2025-04-16 13:35:53
145	16	CS35	2025-04-16 13:35:53	2025-04-16 13:35:53
146	16	CS75	2025-04-16 13:35:53	2025-04-16 13:35:53
147	10	Deville	2025-04-16 13:35:53	2025-04-16 13:35:53
148	10	DTS	2025-04-16 13:35:53	2025-04-16 13:35:53
149	12	E5	2025-04-16 13:35:53	2025-04-16 13:35:53
150	12	E8	2025-04-16 13:35:53	2025-04-16 13:35:53
151	16	EADO	2025-04-16 13:35:53	2025-04-16 13:35:53
152	10	Eldorado	2025-04-16 13:35:53	2025-04-16 13:35:53
153	14	Enclave	2025-04-16 13:35:53	2025-04-16 13:35:53
154	10	ESV	2025-04-16 13:35:53	2025-04-16 13:35:53
155	17	F3	2025-04-16 13:35:53	2025-04-16 13:35:53
156	17	F3-AT	2025-04-16 13:35:53	2025-04-16 13:35:53
157	17	F3R	2025-04-16 13:35:53	2025-04-16 13:35:53
158	17	F6	2025-04-16 13:35:53	2025-04-16 13:35:53
159	13	FSV	2025-04-16 13:35:53	2025-04-16 13:35:53
160	13	FRV Cross	2025-04-16 13:35:53	2025-04-16 13:35:53
161	13	FRV	2025-04-16 13:35:53	2025-04-16 13:35:53
162	18	Grand Sport	2025-04-16 13:35:53	2025-04-16 13:35:53
163	13	H530	2025-04-16 13:35:53	2025-04-16 13:35:53
164	4	I3	2025-04-16 13:35:53	2025-04-16 13:35:53
165	4	I8	2025-04-16 13:35:53	2025-04-16 13:35:53
166	13	Jinbei Hammer Head	2025-04-16 13:35:53	2025-04-16 13:35:53
167	14	Lacrosse	2025-04-16 13:35:53	2025-04-16 13:35:53
168	14	Lesabre	2025-04-16 13:35:53	2025-04-16 13:35:53
169	14	Park Avenue	2025-04-16 13:35:53	2025-04-16 13:35:53
170	14	Rainier	2025-04-16 13:35:53	2025-04-16 13:35:53
171	14	Regal	2025-04-16 13:35:53	2025-04-16 13:35:53
172	12	S11 QQ	2025-04-16 13:35:53	2025-04-16 13:35:53
173	17	S6	2025-04-16 13:35:53	2025-04-16 13:35:53
174	15	Seven	2025-04-16 13:35:53	2025-04-16 13:35:53
175	10	Seville	2025-04-16 13:35:53	2025-04-16 13:35:53
176	10	SLS	2025-04-16 13:35:53	2025-04-16 13:35:53
177	15	Super 7	2025-04-16 13:35:53	2025-04-16 13:35:53
178	10	STS	2025-04-16 13:35:53	2025-04-16 13:35:53
179	10	STS-V	2025-04-16 13:35:53	2025-04-16 13:35:53
180	14	Super-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
181	18	Super Sport	2025-04-16 13:35:53	2025-04-16 13:35:53
182	12	T11 Tiggo	2025-04-16 13:35:53	2025-04-16 13:35:53
183	12	Tiggo 5	2025-04-16 13:35:53	2025-04-16 13:35:53
184	12	Tiggo	2025-04-16 13:35:53	2025-04-16 13:35:53
185	13	V5	2025-04-16 13:35:53	2025-04-16 13:35:53
186	12	V5 Crossover	2025-04-16 13:35:53	2025-04-16 13:35:53
187	18	Veyron	2025-04-16 13:35:53	2025-04-16 13:35:53
188	18	Vitesse	2025-04-16 13:35:53	2025-04-16 13:35:53
189	10	XLR	2025-04-16 13:35:53	2025-04-16 13:35:53
190	10	XLR-V	2025-04-16 13:35:53	2025-04-16 13:35:53
191	4	Z3	2025-04-16 13:35:53	2025-04-16 13:35:53
192	4	Z4	2025-04-16 13:35:53	2025-04-16 13:35:53
193	4	Z8	2025-04-16 13:35:53	2025-04-16 13:35:53
194	11	Corvette	2025-04-16 13:35:53	2025-04-16 13:35:53
195	11	Cruze	2025-04-16 13:35:53	2025-04-16 13:35:53
196	11	Impala	2025-04-16 13:35:53	2025-04-16 13:35:53
197	11	Malibu	2025-04-16 13:35:53	2025-04-16 13:35:53
198	11	Silverado	2025-04-16 13:35:53	2025-04-16 13:35:53
199	11	Sonic	2025-04-16 13:35:53	2025-04-16 13:35:53
200	11	Spark	2025-04-16 13:35:53	2025-04-16 13:35:53
201	11	Suburban	2025-04-16 13:35:53	2025-04-16 13:35:53
202	11	Tahoe	2025-04-16 13:35:53	2025-04-16 13:35:53
203	11	Traverse	2025-04-16 13:35:53	2025-04-16 13:35:53
204	11	Trax	2025-04-16 13:35:53	2025-04-16 13:35:53
205	19	200	2025-04-16 13:35:53	2025-04-16 13:35:53
206	19	200C	2025-04-16 13:35:54	2025-04-16 13:35:54
207	19	300C	2025-04-16 13:35:54	2025-04-16 13:35:54
208	19	300M	2025-04-16 13:35:54	2025-04-16 13:35:54
209	19	300 M	2025-04-16 13:35:54	2025-04-16 13:35:54
210	19	Aspen	2025-04-16 13:35:54	2025-04-16 13:35:54
211	19	Avenger	2025-04-16 13:35:54	2025-04-16 13:35:54
212	20	AX	2025-04-16 13:35:54	2025-04-16 13:35:54
213	20	Axel	2025-04-16 13:35:54	2025-04-16 13:35:54
214	20	Berlingo PKW	2025-04-16 13:35:54	2025-04-16 13:35:54
215	20	Berlingo	2025-04-16 13:35:54	2025-04-16 13:35:54
216	20	C1	2025-04-16 13:35:54	2025-04-16 13:35:54
217	20	C2	2025-04-16 13:35:54	2025-04-16 13:35:54
218	20	C3	2025-04-16 13:35:54	2025-04-16 13:35:54
219	20	C3 Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
220	20	C4	2025-04-16 13:35:54	2025-04-16 13:35:54
221	20	C4 AirCross	2025-04-16 13:35:54	2025-04-16 13:35:54
222	20	C4 Cactus	2025-04-16 13:35:54	2025-04-16 13:35:54
223	20	C4 Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
224	20	C5	2025-04-16 13:35:54	2025-04-16 13:35:54
225	20	C6	2025-04-16 13:35:54	2025-04-16 13:35:54
226	20	C-Crosser	2025-04-16 13:35:54	2025-04-16 13:35:54
227	21	CEO	2025-04-16 13:35:54	2025-04-16 13:35:54
228	20	C-Elysee	2025-04-16 13:35:54	2025-04-16 13:35:54
229	19	Centura	2025-04-16 13:35:54	2025-04-16 13:35:54
230	19	Charger	2025-04-16 13:35:54	2025-04-16 13:35:54
231	11	Chevy	2025-04-16 13:35:54	2025-04-16 13:35:54
232	11	Cobalt	2025-04-16 13:35:54	2025-04-16 13:35:54
233	11	Colorado	2025-04-16 13:35:54	2025-04-16 13:35:54
234	19	Concorde	2025-04-16 13:35:54	2025-04-16 13:35:54
235	19	Cordoba	2025-04-16 13:35:54	2025-04-16 13:35:54
236	19	Crossfire	2025-04-16 13:35:54	2025-04-16 13:35:54
237	11	CSV	2025-04-16 13:35:54	2025-04-16 13:35:54
238	20	C-Zero	2025-04-16 13:35:54	2025-04-16 13:35:54
239	22	Dokker	2025-04-16 13:35:54	2025-04-16 13:35:54
240	20	DS3	2025-04-16 13:35:54	2025-04-16 13:35:54
241	20	DS4	2025-04-16 13:35:54	2025-04-16 13:35:54
242	20	DS5	2025-04-16 13:35:54	2025-04-16 13:35:54
243	11	Elcamino	2025-04-16 13:35:54	2025-04-16 13:35:54
244	11	Epica	2025-04-16 13:35:54	2025-04-16 13:35:54
245	11	Equinox	2025-04-16 13:35:54	2025-04-16 13:35:54
246	11	Evanda	2025-04-16 13:35:54	2025-04-16 13:35:54
247	11	Explorer	2025-04-16 13:35:54	2025-04-16 13:35:54
248	11	Express	2025-04-16 13:35:54	2025-04-16 13:35:54
249	19	Grand Voyager	2025-04-16 13:35:54	2025-04-16 13:35:54
250	11	HHR	2025-04-16 13:35:54	2025-04-16 13:35:54
251	19	Intrepid	2025-04-16 13:35:54	2025-04-16 13:35:54
252	11	Kalos	2025-04-16 13:35:54	2025-04-16 13:35:54
253	11	Lacetti	2025-04-16 13:35:54	2025-04-16 13:35:54
254	19	Lebaron	2025-04-16 13:35:54	2025-04-16 13:35:54
255	19	LHS	2025-04-16 13:35:54	2025-04-16 13:35:54
256	22	Lodgy	2025-04-16 13:35:54	2025-04-16 13:35:54
257	11	Lumina	2025-04-16 13:35:54	2025-04-16 13:35:54
258	11	Matiz	2025-04-16 13:35:54	2025-04-16 13:35:54
259	20	Nemo PKW	2025-04-16 13:35:54	2025-04-16 13:35:54
260	19	Neon	2025-04-16 13:35:54	2025-04-16 13:35:54
261	19	Newport	2025-04-16 13:35:54	2025-04-16 13:35:54
262	11	Nubira	2025-04-16 13:35:54	2025-04-16 13:35:54
263	11	Optra	2025-04-16 13:35:54	2025-04-16 13:35:54
264	11	Orlando	2025-04-16 13:35:54	2025-04-16 13:35:54
265	19	Pacifica	2025-04-16 13:35:54	2025-04-16 13:35:54
266	20	Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
267	19	Pick Up	2025-04-16 13:35:54	2025-04-16 13:35:54
268	11	Pick Up	2025-04-16 13:35:54	2025-04-16 13:35:54
269	20	Pluriel	2025-04-16 13:35:54	2025-04-16 13:35:54
270	19	Prowler	2025-04-16 13:35:54	2025-04-16 13:35:54
271	19	PT Cruiser	2025-04-16 13:35:54	2025-04-16 13:35:54
272	11	Rezzo	2025-04-16 13:35:54	2025-04-16 13:35:54
273	20	Saxo	2025-04-16 13:35:54	2025-04-16 13:35:54
274	19	Sebring	2025-04-16 13:35:54	2025-04-16 13:35:54
275	11	SSR	2025-04-16 13:35:54	2025-04-16 13:35:54
276	19	Stratus	2025-04-16 13:35:54	2025-04-16 13:35:54
277	11	Terrain	2025-04-16 13:35:54	2025-04-16 13:35:54
278	19	Town	2025-04-16 13:35:54	2025-04-16 13:35:54
279	11	Tracker	2025-04-16 13:35:54	2025-04-16 13:35:54
280	11	Trans Sport	2025-04-16 13:35:54	2025-04-16 13:35:54
281	11	T-Series	2025-04-16 13:35:54	2025-04-16 13:35:54
282	21	UFO	2025-04-16 13:35:54	2025-04-16 13:35:54
283	11	Uplander	2025-04-16 13:35:54	2025-04-16 13:35:54
284	11	Venture	2025-04-16 13:35:54	2025-04-16 13:35:54
285	23	Veryca	2025-04-16 13:35:54	2025-04-16 13:35:54
286	11	Volt	2025-04-16 13:35:54	2025-04-16 13:35:54
287	19	Voyager	2025-04-16 13:35:54	2025-04-16 13:35:54
288	20	Xsara	2025-04-16 13:35:54	2025-04-16 13:35:54
289	20	Xsara Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
290	23	Z7	2025-04-16 13:35:54	2025-04-16 13:35:54
291	24	Materia	2025-04-16 13:35:54	2025-04-16 13:35:54
292	24	Sirion	2025-04-16 13:35:54	2025-04-16 13:35:54
293	24	Terios	2025-04-16 13:35:54	2025-04-16 13:35:54
294	25	Challenger	2025-04-16 13:35:54	2025-04-16 13:35:54
295	25	Charger	2025-04-16 13:35:54	2025-04-16 13:35:54
296	25	Durango	2025-04-16 13:35:54	2025-04-16 13:35:54
297	26	488	2025-04-16 13:35:54	2025-04-16 13:35:54
298	27	500	2025-04-16 13:35:54	2025-04-16 13:35:54
299	26	126	2025-04-16 13:35:54	2025-04-16 13:35:54
300	27	127	2025-04-16 13:35:54	2025-04-16 13:35:54
301	27	131	2025-04-16 13:35:54	2025-04-16 13:35:54
302	27	132	2025-04-16 13:35:54	2025-04-16 13:35:54
303	27	133	2025-04-16 13:35:54	2025-04-16 13:35:54
304	27	1400	2025-04-16 13:35:54	2025-04-16 13:35:54
305	26	206	2025-04-16 13:35:54	2025-04-16 13:35:54
306	26	306	2025-04-16 13:35:54	2025-04-16 13:35:54
307	26	308	2025-04-16 13:35:54	2025-04-16 13:35:54
308	26	355	2025-04-16 13:35:54	2025-04-16 13:35:54
309	26	360	2025-04-16 13:35:54	2025-04-16 13:35:54
310	26	360 Modena F1	2025-04-16 13:35:54	2025-04-16 13:35:54
311	26	430	2025-04-16 13:35:54	2025-04-16 13:35:54
312	26	456	2025-04-16 13:35:54	2025-04-16 13:35:54
313	26	458	2025-04-16 13:35:54	2025-04-16 13:35:54
314	27	500L	2025-04-16 13:35:54	2025-04-16 13:35:54
315	26	512	2025-04-16 13:35:54	2025-04-16 13:35:54
316	26	550 Barchetta	2025-04-16 13:35:54	2025-04-16 13:35:54
317	26	550 Maranello	2025-04-16 13:35:54	2025-04-16 13:35:54
318	26	575	2025-04-16 13:35:54	2025-04-16 13:35:54
319	26	575M	2025-04-16 13:35:54	2025-04-16 13:35:54
320	26	599	2025-04-16 13:35:54	2025-04-16 13:35:54
321	26	599 GTB	2025-04-16 13:35:54	2025-04-16 13:35:54
322	26	612	2025-04-16 13:35:54	2025-04-16 13:35:54
323	27	Abarth	2025-04-16 13:35:54	2025-04-16 13:35:54
324	24	Applause	2025-04-16 13:35:54	2025-04-16 13:35:54
325	25	Avenger	2025-04-16 13:35:54	2025-04-16 13:35:54
326	27	Barchrtta	2025-04-16 13:35:54	2025-04-16 13:35:54
327	27	Brava	2025-04-16 13:35:54	2025-04-16 13:35:54
328	27	Bravo	2025-04-16 13:35:54	2025-04-16 13:35:54
329	25	Caliber	2025-04-16 13:35:54	2025-04-16 13:35:54
330	26	California	2025-04-16 13:35:54	2025-04-16 13:35:54
331	26	California T	2025-04-16 13:35:54	2025-04-16 13:35:54
332	25	Caravan	2025-04-16 13:35:54	2025-04-16 13:35:54
333	24	Charade	2025-04-16 13:35:54	2025-04-16 13:35:54
334	28	Cielo	2025-04-16 13:35:54	2025-04-16 13:35:54
335	24	Copen	2025-04-16 13:35:54	2025-04-16 13:35:54
336	27	Croma	2025-04-16 13:35:54	2025-04-16 13:35:54
337	29	Cruiser	2025-04-16 13:35:54	2025-04-16 13:35:54
338	24	Cuore	2025-04-16 13:35:54	2025-04-16 13:35:54
339	25	Dakota	2025-04-16 13:35:54	2025-04-16 13:35:54
340	25	Dart	2025-04-16 13:35:54	2025-04-16 13:35:54
341	24	Deluxe	2025-04-16 13:35:54	2025-04-16 13:35:54
342	27	Doblo	2025-04-16 13:35:54	2025-04-16 13:35:54
343	27	Doblo Neu	2025-04-16 13:35:54	2025-04-16 13:35:54
344	27	Ducato	2025-04-16 13:35:54	2025-04-16 13:35:54
345	27	Duna	2025-04-16 13:35:54	2025-04-16 13:35:54
346	26	Enzo	2025-04-16 13:35:54	2025-04-16 13:35:54
347	28	Espero	2025-04-16 13:35:54	2025-04-16 13:35:54
348	28	Evanda	2025-04-16 13:35:54	2025-04-16 13:35:54
349	26	F12	2025-04-16 13:35:54	2025-04-16 13:35:54
350	26	F40	2025-04-16 13:35:54	2025-04-16 13:35:54
351	26	F430	2025-04-16 13:35:54	2025-04-16 13:35:54
352	26	F50	2025-04-16 13:35:54	2025-04-16 13:35:54
353	26	F575M F1	2025-04-16 13:35:54	2025-04-16 13:35:54
354	26	F575 SuperAmerica	2025-04-16 13:35:54	2025-04-16 13:35:54
355	26	FF	2025-04-16 13:35:54	2025-04-16 13:35:54
356	27	Fiorino	2025-04-16 13:35:54	2025-04-16 13:35:54
357	27	Grande Punto	2025-04-16 13:35:54	2025-04-16 13:35:54
358	24	Gran Max	2025-04-16 13:35:54	2025-04-16 13:35:54
359	26	GTO	2025-04-16 13:35:54	2025-04-16 13:35:54
360	30	H30 Cross	2025-04-16 13:35:54	2025-04-16 13:35:54
361	25	Journey	2025-04-16 13:35:54	2025-04-16 13:35:54
362	28	Kalos	2025-04-16 13:35:54	2025-04-16 13:35:54
363	26	LA	2025-04-16 13:35:54	2025-04-16 13:35:54
364	28	Lacetti	2025-04-16 13:35:54	2025-04-16 13:35:54
365	28	Lanos	2025-04-16 13:35:54	2025-04-16 13:35:54
366	25	Laramie	2025-04-16 13:35:54	2025-04-16 13:35:54
367	28	Leganza	2025-04-16 13:35:54	2025-04-16 13:35:54
368	22	Logan	2025-04-16 13:35:54	2025-04-16 13:35:54
369	22	Logan MCV	2025-04-16 13:35:54	2025-04-16 13:35:54
370	25	Magnum	2025-04-16 13:35:54	2025-04-16 13:35:54
371	28	Matiz	2025-04-16 13:35:54	2025-04-16 13:35:54
372	24	Mira	2025-04-16 13:35:54	2025-04-16 13:35:54
373	28	Musso	2025-04-16 13:35:54	2025-04-16 13:35:54
374	25	Neon	2025-04-16 13:35:54	2025-04-16 13:35:54
375	28	Nova	2025-04-16 13:35:54	2025-04-16 13:35:54
376	28	Nubira	2025-04-16 13:35:54	2025-04-16 13:35:54
377	28	Racer	2025-04-16 13:35:54	2025-04-16 13:35:54
378	25	Ram	2025-04-16 13:35:54	2025-04-16 13:35:54
379	28	Rexton	2025-04-16 13:35:54	2025-04-16 13:35:54
380	28	Rezzo	2025-04-16 13:35:54	2025-04-16 13:35:54
381	24	Rocky	2025-04-16 13:35:54	2025-04-16 13:35:54
382	30	S30	2025-04-16 13:35:54	2025-04-16 13:35:54
383	22	Sandero	2025-04-16 13:35:54	2025-04-16 13:35:54
384	26	SuperAmerica	2025-04-16 13:35:54	2025-04-16 13:35:54
385	28	Tacuma	2025-04-16 13:35:54	2025-04-16 13:35:54
386	24	Trevis	2025-04-16 13:35:54	2025-04-16 13:35:54
387	25	Viper	2025-04-16 13:35:54	2025-04-16 13:35:54
388	24	YRV	2025-04-16 13:35:54	2025-04-16 13:35:54
389	27	LINEA	2025-04-16 13:35:54	2025-04-16 13:35:54
390	31	Eco Sport	2025-04-16 13:35:54	2025-04-16 13:35:54
391	31	Edge	2025-04-16 13:35:54	2025-04-16 13:35:54
392	31	Escape	2025-04-16 13:35:54	2025-04-16 13:35:54
393	31	Expedition	2025-04-16 13:35:54	2025-04-16 13:35:54
394	31	Explorer	2025-04-16 13:35:54	2025-04-16 13:35:54
395	31	F150	2025-04-16 13:35:54	2025-04-16 13:35:54
396	31	Fiesta	2025-04-16 13:35:54	2025-04-16 13:35:54
397	31	Figo	2025-04-16 13:35:54	2025-04-16 13:35:54
398	31	Flex	2025-04-16 13:35:54	2025-04-16 13:35:54
399	31	Focus	2025-04-16 13:35:54	2025-04-16 13:35:54
400	31	Fusion	2025-04-16 13:35:54	2025-04-16 13:35:54
401	31	Mustang	2025-04-16 13:35:54	2025-04-16 13:35:54
402	31	Ranger	2025-04-16 13:35:54	2025-04-16 13:35:54
403	31	Taurus	2025-04-16 13:35:54	2025-04-16 13:35:54
404	32	Acadia	2025-04-16 13:35:54	2025-04-16 13:35:54
405	32	Sierra 1500	2025-04-16 13:35:54	2025-04-16 13:35:54
406	32	Yukon	2025-04-16 13:35:54	2025-04-16 13:35:54
407	31	B-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
408	31	Bronco	2025-04-16 13:35:54	2025-04-16 13:35:54
409	32	Canyon	2025-04-16 13:35:54	2025-04-16 13:35:54
410	33	CK	2025-04-16 13:35:54	2025-04-16 13:35:54
411	31	C-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
412	31	Contour	2025-04-16 13:35:54	2025-04-16 13:35:54
413	31	Crown Victoria	2025-04-16 13:35:54	2025-04-16 13:35:54
414	34	Deer	2025-04-16 13:35:54	2025-04-16 13:35:54
415	32	Denali	2025-04-16 13:35:54	2025-04-16 13:35:54
416	33	Emgrand 8	2025-04-16 13:35:54	2025-04-16 13:35:54
417	33	Emgrand X7	2025-04-16 13:35:54	2025-04-16 13:35:54
418	32	Envoy	2025-04-16 13:35:54	2025-04-16 13:35:54
419	31	Escort	2025-04-16 13:35:54	2025-04-16 13:35:54
420	31	Everest	2025-04-16 13:35:54	2025-04-16 13:35:54
421	31	Excursion	2025-04-16 13:35:54	2025-04-16 13:35:54
422	31	Expedition EL	2025-04-16 13:35:54	2025-04-16 13:35:54
423	31	Fairlane	2025-04-16 13:35:54	2025-04-16 13:35:54
424	31	Five Hundred	2025-04-16 13:35:54	2025-04-16 13:35:54
425	31	Focus C-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
426	31	Focus Electric	2025-04-16 13:35:54	2025-04-16 13:35:54
427	31	Freestar	2025-04-16 13:35:54	2025-04-16 13:35:54
428	31	F-Series	2025-04-16 13:35:54	2025-04-16 13:35:54
429	35	GA3	2025-04-16 13:35:54	2025-04-16 13:35:54
430	35	GA5	2025-04-16 13:35:54	2025-04-16 13:35:54
431	31	Galaxy	2025-04-16 13:35:54	2025-04-16 13:35:54
432	33	GC2	2025-04-16 13:35:54	2025-04-16 13:35:54
433	33	GC6	2025-04-16 13:35:54	2025-04-16 13:35:54
434	33	GC7	2025-04-16 13:35:54	2025-04-16 13:35:54
435	31	Granada	2025-04-16 13:35:54	2025-04-16 13:35:54
436	35	GS5	2025-04-16 13:35:54	2025-04-16 13:35:54
437	33	GX2	2025-04-16 13:35:54	2025-04-16 13:35:54
438	27	IDEA	2025-04-16 13:35:54	2025-04-16 13:35:54
439	32	Jimmy	2025-04-16 13:35:54	2025-04-16 13:35:54
440	31	KA	2025-04-16 13:35:54	2025-04-16 13:35:54
441	36	Karma	2025-04-16 13:35:54	2025-04-16 13:35:54
442	31	Kuga	2025-04-16 13:35:54	2025-04-16 13:35:54
443	27	Marea	2025-04-16 13:35:54	2025-04-16 13:35:54
444	31	Maverick	2025-04-16 13:35:54	2025-04-16 13:35:54
445	31	Megastar	2025-04-16 13:35:54	2025-04-16 13:35:54
446	31	Monarch	2025-04-16 13:35:54	2025-04-16 13:35:54
447	31	Mondeo	2025-04-16 13:35:54	2025-04-16 13:35:54
448	27	Multipla	2025-04-16 13:35:54	2025-04-16 13:35:54
449	31	Mustang GT	2025-04-16 13:35:54	2025-04-16 13:35:54
450	31	Orion	2025-04-16 13:35:54	2025-04-16 13:35:54
451	27	Other	2025-04-16 13:35:54	2025-04-16 13:35:54
452	27	Palio	2025-04-16 13:35:54	2025-04-16 13:35:54
453	27	Panda	2025-04-16 13:35:54	2025-04-16 13:35:54
454	31	PickUp	2025-04-16 13:35:54	2025-04-16 13:35:54
455	31	Probe	2025-04-16 13:35:54	2025-04-16 13:35:54
456	27	Punto	2025-04-16 13:35:54	2025-04-16 13:35:54
457	27	Punto Evo	2025-04-16 13:35:54	2025-04-16 13:35:54
458	27	Qubo	2025-04-16 13:35:54	2025-04-16 13:35:54
459	27	Regata	2025-04-16 13:35:54	2025-04-16 13:35:54
460	27	Ritmo	2025-04-16 13:35:54	2025-04-16 13:35:54
461	32	Safari	2025-04-16 13:35:54	2025-04-16 13:35:54
462	32	Savana	2025-04-16 13:35:54	2025-04-16 13:35:54
463	27	Sedici	2025-04-16 13:35:54	2025-04-16 13:35:54
464	27	Seicento	2025-04-16 13:35:54	2025-04-16 13:35:54
465	27	Siena	2025-04-16 13:35:54	2025-04-16 13:35:54
466	32	Sierra	2025-04-16 13:35:54	2025-04-16 13:35:54
467	31	Sierra	2025-04-16 13:35:54	2025-04-16 13:35:54
468	31	S-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
469	27	Stilo	2025-04-16 13:35:54	2025-04-16 13:35:54
470	31	Sport Trac	2025-04-16 13:35:54	2025-04-16 13:35:54
471	31	Streetka	2025-04-16 13:35:54	2025-04-16 13:35:54
472	37	SUP	2025-04-16 13:35:54	2025-04-16 13:35:54
473	32	Suburban	2025-04-16 13:35:54	2025-04-16 13:35:54
474	31	Tempo	2025-04-16 13:35:54	2025-04-16 13:35:54
475	27	Tempra	2025-04-16 13:35:54	2025-04-16 13:35:54
476	31	Thunderbird	2025-04-16 13:35:54	2025-04-16 13:35:54
477	31	Tourneo Connect	2025-04-16 13:35:54	2025-04-16 13:35:54
478	31	Tourneo Courier	2025-04-16 13:35:54	2025-04-16 13:35:54
479	31	Transit	2025-04-16 13:35:54	2025-04-16 13:35:54
480	37	Tunland	2025-04-16 13:35:54	2025-04-16 13:35:54
481	27	UNO	2025-04-16 13:35:54	2025-04-16 13:35:54
482	37	View C1 Minibus	2025-04-16 13:35:54	2025-04-16 13:35:54
483	31	Windstar	2025-04-16 13:35:54	2025-04-16 13:35:54
484	32	Yukon Xl	2025-04-16 13:35:54	2025-04-16 13:35:54
485	32	Terrain	2025-04-16 13:35:54	2025-04-16 13:35:54
486	38	Accord	2025-04-16 13:35:54	2025-04-16 13:35:54
487	38	CR-V	2025-04-16 13:35:54	2025-04-16 13:35:54
488	38	Jazz	2025-04-16 13:35:54	2025-04-16 13:35:54
489	38	Pilot	2025-04-16 13:35:54	2025-04-16 13:35:54
490	39	Accent	2025-04-16 13:35:54	2025-04-16 13:35:54
491	39	Azera	2025-04-16 13:35:54	2025-04-16 13:35:54
492	39	Centennial	2025-04-16 13:35:54	2025-04-16 13:35:54
493	39	Elantra	2025-04-16 13:35:54	2025-04-16 13:35:54
494	39	Genesis	2025-04-16 13:35:54	2025-04-16 13:35:54
495	39	Grand i10	2025-04-16 13:35:54	2025-04-16 13:35:54
496	39	Grand Santa Fe	2025-04-16 13:35:54	2025-04-16 13:35:54
497	39	i10	2025-04-16 13:35:54	2025-04-16 13:35:54
498	39	i30	2025-04-16 13:35:54	2025-04-16 13:35:54
499	39	i40	2025-04-16 13:35:54	2025-04-16 13:35:54
500	39	Santa Fe	2025-04-16 13:35:54	2025-04-16 13:35:54
501	39	Sonata	2025-04-16 13:35:54	2025-04-16 13:35:54
502	39	Tucson	2025-04-16 13:35:54	2025-04-16 13:35:54
503	40	FX35	2025-04-16 13:35:54	2025-04-16 13:35:54
504	40	FX37	2025-04-16 13:35:54	2025-04-16 13:35:54
505	40	FX50	2025-04-16 13:35:54	2025-04-16 13:35:54
506	40	G	2025-04-16 13:35:54	2025-04-16 13:35:54
507	40	Q30	2025-04-16 13:35:54	2025-04-16 13:35:54
508	40	Q50	2025-04-16 13:35:54	2025-04-16 13:35:54
509	40	Q60	2025-04-16 13:35:54	2025-04-16 13:35:54
510	40	Q70	2025-04-16 13:35:54	2025-04-16 13:35:54
511	40	QX50	2025-04-16 13:35:54	2025-04-16 13:35:54
512	40	QX56	2025-04-16 13:35:54	2025-04-16 13:35:54
513	40	QX60	2025-04-16 13:35:54	2025-04-16 13:35:54
514	40	QX70	2025-04-16 13:35:54	2025-04-16 13:35:54
515	40	QX80	2025-04-16 13:35:54	2025-04-16 13:35:54
516	39	Atos Prime	2025-04-16 13:35:54	2025-04-16 13:35:54
517	38	City	2025-04-16 13:35:54	2025-04-16 13:35:54
518	38	Civic Hybrid	2025-04-16 13:35:54	2025-04-16 13:35:54
519	38	Civic IMA	2025-04-16 13:35:54	2025-04-16 13:35:54
520	39	County	2025-04-16 13:35:54	2025-04-16 13:35:54
521	39	Coupe	2025-04-16 13:35:54	2025-04-16 13:35:54
522	38	CR-X	2025-04-16 13:35:54	2025-04-16 13:35:54
523	39	Crete	2025-04-16 13:35:54	2025-04-16 13:35:54
524	38	CR-Z	2025-04-16 13:35:54	2025-04-16 13:35:54
525	38	Crosstour	2025-04-16 13:35:54	2025-04-16 13:35:54
526	38	Element	2025-04-16 13:35:54	2025-04-16 13:35:54
527	40	EX	2025-04-16 13:35:54	2025-04-16 13:35:54
528	40	EX35	2025-04-16 13:35:54	2025-04-16 13:35:54
529	39	Excel	2025-04-16 13:35:54	2025-04-16 13:35:54
530	34	Florid	2025-04-16 13:35:54	2025-04-16 13:35:54
531	38	FR-V	2025-04-16 13:35:54	2025-04-16 13:35:54
532	40	FX	2025-04-16 13:35:54	2025-04-16 13:35:54
533	40	FX45	2025-04-16 13:35:54	2025-04-16 13:35:54
534	40	G35	2025-04-16 13:35:54	2025-04-16 13:35:54
535	40	G37	2025-04-16 13:35:54	2025-04-16 13:35:54
536	39	Galloper	2025-04-16 13:35:54	2025-04-16 13:35:54
537	39	Getz	2025-04-16 13:35:54	2025-04-16 13:35:54
538	39	Grandeur	2025-04-16 13:35:54	2025-04-16 13:35:54
539	40	G-Series	2025-04-16 13:35:54	2025-04-16 13:35:54
540	41	H1	2025-04-16 13:35:54	2025-04-16 13:35:54
541	41	H2	2025-04-16 13:35:54	2025-04-16 13:35:54
542	41	H3	2025-04-16 13:35:54	2025-04-16 13:35:54
543	41	H3T	2025-04-16 13:35:54	2025-04-16 13:35:54
544	41	HX	2025-04-16 13:35:54	2025-04-16 13:35:54
545	38	HRV	2025-04-16 13:35:54	2025-04-16 13:35:54
546	39	i20	2025-04-16 13:35:54	2025-04-16 13:35:54
547	40	i30	2025-04-16 13:35:54	2025-04-16 13:35:54
548	40	i35	2025-04-16 13:35:54	2025-04-16 13:35:54
549	38	Insight	2025-04-16 13:35:54	2025-04-16 13:35:54
550	39	iX20	2025-04-16 13:35:54	2025-04-16 13:35:54
551	39	iX35	2025-04-16 13:35:54	2025-04-16 13:35:54
552	39	iX55	2025-04-16 13:35:54	2025-04-16 13:35:54
553	40	J30	2025-04-16 13:35:54	2025-04-16 13:35:54
554	40	JX	2025-04-16 13:35:54	2025-04-16 13:35:54
555	38	Legend	2025-04-16 13:35:54	2025-04-16 13:35:54
556	40	M	2025-04-16 13:35:54	2025-04-16 13:35:54
557	39	Matrix	2025-04-16 13:35:54	2025-04-16 13:35:54
558	38	MR-V	2025-04-16 13:35:54	2025-04-16 13:35:54
559	38	NSX	2025-04-16 13:35:54	2025-04-16 13:35:54
560	38	Odyssey	2025-04-16 13:35:54	2025-04-16 13:35:54
561	38	Passport	2025-04-16 13:35:54	2025-04-16 13:35:54
562	39	Pony	2025-04-16 13:35:54	2025-04-16 13:35:54
563	38	Prelude	2025-04-16 13:35:54	2025-04-16 13:35:54
564	40	Q45	2025-04-16 13:35:54	2025-04-16 13:35:54
565	40	QX35	2025-04-16 13:35:54	2025-04-16 13:35:54
566	40	QX4	2025-04-16 13:35:54	2025-04-16 13:35:54
567	38	Ridgeline	2025-04-16 13:35:54	2025-04-16 13:35:54
568	38	S2000	2025-04-16 13:35:54	2025-04-16 13:35:54
569	38	Stream	2025-04-16 13:35:54	2025-04-16 13:35:54
570	38	S500	2025-04-16 13:35:54	2025-04-16 13:35:54
571	39	Terracan	2025-04-16 13:35:54	2025-04-16 13:35:54
572	39	Tiburon	2025-04-16 13:35:54	2025-04-16 13:35:54
573	39	Trajet	2025-04-16 13:35:54	2025-04-16 13:35:54
574	39	Veloster	2025-04-16 13:35:54	2025-04-16 13:35:54
575	39	Veracruz	2025-04-16 13:35:54	2025-04-16 13:35:54
576	39	Verna	2025-04-16 13:35:54	2025-04-16 13:35:54
577	38	Vezel	2025-04-16 13:35:54	2025-04-16 13:35:54
578	38	Vigor	2025-04-16 13:35:54	2025-04-16 13:35:54
579	34	Wingle	2025-04-16 13:35:54	2025-04-16 13:35:54
580	40	X35	2025-04-16 13:35:54	2025-04-16 13:35:54
581	39	XG 30	2025-04-16 13:35:54	2025-04-16 13:35:54
582	39	XG300	2025-04-16 13:35:54	2025-04-16 13:35:54
583	39	XG350	2025-04-16 13:35:54	2025-04-16 13:35:54
584	38	Z	2025-04-16 13:35:54	2025-04-16 13:35:54
585	42	F-Type	2025-04-16 13:35:54	2025-04-16 13:35:54
586	42	S-Type	2025-04-16 13:35:54	2025-04-16 13:35:54
587	42	XE	2025-04-16 13:35:54	2025-04-16 13:35:54
588	42	XF	2025-04-16 13:35:54	2025-04-16 13:35:54
589	42	XJ	2025-04-16 13:35:54	2025-04-16 13:35:54
590	43	Cherokee	2025-04-16 13:35:54	2025-04-16 13:35:54
591	43	Compass	2025-04-16 13:35:54	2025-04-16 13:35:54
592	43	Grand Cherokee	2025-04-16 13:35:54	2025-04-16 13:35:54
593	43	Renegade	2025-04-16 13:35:54	2025-04-16 13:35:54
594	43	Wrangler	2025-04-16 13:35:54	2025-04-16 13:35:54
595	44	Candenza	2025-04-16 13:35:54	2025-04-16 13:35:54
596	44	Carens	2025-04-16 13:35:54	2025-04-16 13:35:54
597	44	Carnival	2025-04-16 13:35:54	2025-04-16 13:35:54
598	44	Cerato	2025-04-16 13:35:54	2025-04-16 13:35:54
599	44	Clarus	2025-04-16 13:35:54	2025-04-16 13:35:54
600	44	Mohave	2025-04-16 13:35:54	2025-04-16 13:35:54
601	44	Optima	2025-04-16 13:35:54	2025-04-16 13:35:54
602	44	Picanto	2025-04-16 13:35:54	2025-04-16 13:35:54
603	44	Quoris	2025-04-16 13:35:54	2025-04-16 13:35:54
604	44	Rio	2025-04-16 13:35:54	2025-04-16 13:35:54
605	44	Sorento	2025-04-16 13:35:54	2025-04-16 13:35:54
606	44	Soul	2025-04-16 13:35:54	2025-04-16 13:35:54
607	45	111	2025-04-16 13:35:54	2025-04-16 13:35:54
608	45	1117	2025-04-16 13:35:54	2025-04-16 13:35:54
609	45	1118	2025-04-16 13:35:54	2025-04-16 13:35:54
610	45	1119	2025-04-16 13:35:54	2025-04-16 13:35:54
611	45	112	2025-04-16 13:35:54	2025-04-16 13:35:54
612	46	350	2025-04-16 13:35:54	2025-04-16 13:35:54
613	47	Agera	2025-04-16 13:35:54	2025-04-16 13:35:54
614	48	Amigo	2025-04-16 13:35:54	2025-04-16 13:35:54
615	48	Ascender	2025-04-16 13:35:54	2025-04-16 13:35:54
616	46	Aventador	2025-04-16 13:35:54	2025-04-16 13:35:54
617	48	Axiom	2025-04-16 13:35:54	2025-04-16 13:35:54
618	44	Borrego	2025-04-16 13:35:54	2025-04-16 13:35:54
619	44	Carnival II	2025-04-16 13:35:54	2025-04-16 13:35:54
620	47	CCX	2025-04-16 13:35:54	2025-04-16 13:35:54
621	44	Ceed	2025-04-16 13:35:55	2025-04-16 13:35:55
622	43	Commanche	2025-04-16 13:35:55	2025-04-16 13:35:55
623	43	Commander	2025-04-16 13:35:55	2025-04-16 13:35:55
624	46	Countach	2025-04-16 13:35:55	2025-04-16 13:35:55
625	49	Daily	2025-04-16 13:35:55	2025-04-16 13:35:55
626	48	D-Max	2025-04-16 13:35:55	2025-04-16 13:35:55
627	44	Forte	2025-04-16 13:35:55	2025-04-16 13:35:55
628	42	F-Pace	2025-04-16 13:35:55	2025-04-16 13:35:55
629	43	Grand Wagoneer	2025-04-16 13:35:55	2025-04-16 13:35:55
630	45	Granta	2025-04-16 13:35:55	2025-04-16 13:35:55
631	50	H2	2025-04-16 13:35:55	2025-04-16 13:35:55
632	48	i Mark	2025-04-16 13:35:55	2025-04-16 13:35:55
633	48	Impulse	2025-04-16 13:35:55	2025-04-16 13:35:55
634	51	J5	2025-04-16 13:35:55	2025-04-16 13:35:55
635	51	J4	2025-04-16 13:35:55	2025-04-16 13:35:55
636	51	J6	2025-04-16 13:35:55	2025-04-16 13:35:55
637	45	Kalina II	2025-04-16 13:35:55	2025-04-16 13:35:55
638	44	Koup	2025-04-16 13:35:55	2025-04-16 13:35:55
639	51	LCV	2025-04-16 13:35:55	2025-04-16 13:35:55
640	51	M1	2025-04-16 13:35:55	2025-04-16 13:35:55
641	51	M5	2025-04-16 13:35:55	2025-04-16 13:35:55
642	44	Magentis	2025-04-16 13:35:55	2025-04-16 13:35:55
643	49	Massif	2025-04-16 13:35:55	2025-04-16 13:35:55
644	52	Mini Van	2025-04-16 13:35:55	2025-04-16 13:35:55
645	53	MXT	2025-04-16 13:35:55	2025-04-16 13:35:55
646	45	Niva	2025-04-16 13:35:55	2025-04-16 13:35:55
647	48	NPR	2025-04-16 13:35:55	2025-04-16 13:35:55
648	48	Oasis	2025-04-16 13:35:55	2025-04-16 13:35:55
649	44	Opirus	2025-04-16 13:35:55	2025-04-16 13:35:55
650	43	Patriot	2025-04-16 13:35:55	2025-04-16 13:35:55
651	45	Priora	2025-04-16 13:35:55	2025-04-16 13:35:55
652	44	Pride	2025-04-16 13:35:55	2025-04-16 13:35:55
653	48	Reward-NP	2025-04-16 13:35:55	2025-04-16 13:35:55
654	48	Revert-NP	2025-04-16 13:35:55	2025-04-16 13:35:55
655	48	Rodeo	2025-04-16 13:35:55	2025-04-16 13:35:55
656	43	Rubicon	2025-04-16 13:35:55	2025-04-16 13:35:55
657	51	S3	2025-04-16 13:35:55	2025-04-16 13:35:55
658	44	Sephia	2025-04-16 13:35:55	2025-04-16 13:35:55
659	44	Shuma II	2025-04-16 13:35:55	2025-04-16 13:35:55
660	44	Soul EV	2025-04-16 13:35:55	2025-04-16 13:35:55
661	42	Sovereign	2025-04-16 13:35:55	2025-04-16 13:35:55
662	44	Spectra	2025-04-16 13:35:55	2025-04-16 13:35:55
663	48	Stylus	2025-04-16 13:35:55	2025-04-16 13:35:55
664	44	Sportage	2025-04-16 13:35:55	2025-04-16 13:35:55
665	50	SY6483	2025-04-16 13:35:55	2025-04-16 13:35:55
666	45	Taiga	2025-04-16 13:35:55	2025-04-16 13:35:55
667	48	Trooper	2025-04-16 13:35:55	2025-04-16 13:35:55
668	44	Venga	2025-04-16 13:35:55	2025-04-16 13:35:55
669	43	Wagoneer	2025-04-16 13:35:55	2025-04-16 13:35:55
670	43	Wrangler Unlimited	2025-04-16 13:35:55	2025-04-16 13:35:55
671	54	X-BOW	2025-04-16 13:35:55	2025-04-16 13:35:55
672	42	XFR	2025-04-16 13:35:55	2025-04-16 13:35:55
673	42	XFR-S	2025-04-16 13:35:55	2025-04-16 13:35:55
674	42	XF-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
675	42	XJR	2025-04-16 13:35:55	2025-04-16 13:35:55
676	42	XJ-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
677	42	XK	2025-04-16 13:35:55	2025-04-16 13:35:55
678	42	XKR	2025-04-16 13:35:55	2025-04-16 13:35:55
679	42	XKR-S	2025-04-16 13:35:55	2025-04-16 13:35:55
680	42	XK-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
681	42	X - Type	2025-04-16 13:35:55	2025-04-16 13:35:55
682	42	X-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
683	55	Range Rover	2025-04-16 13:35:55	2025-04-16 13:35:55
684	55	Range Rover Evoque	2025-04-16 13:35:55	2025-04-16 13:35:55
685	55	Range Rover Sport	2025-04-16 13:35:55	2025-04-16 13:35:55
686	56	ES	2025-04-16 13:35:55	2025-04-16 13:35:55
687	56	IS	2025-04-16 13:35:55	2025-04-16 13:35:55
688	56	LS	2025-04-16 13:35:55	2025-04-16 13:35:55
689	56	LX	2025-04-16 13:35:55	2025-04-16 13:35:55
690	56	RX	2025-04-16 13:35:55	2025-04-16 13:35:55
691	57	Continential	2025-04-16 13:35:55	2025-04-16 13:35:55
692	57	MKC	2025-04-16 13:35:55	2025-04-16 13:35:55
693	57	MKX	2025-04-16 13:35:55	2025-04-16 13:35:55
694	57	MKZ	2025-04-16 13:35:55	2025-04-16 13:35:55
695	57	Navigator	2025-04-16 13:35:55	2025-04-16 13:35:55
696	58	Granturismo	2025-04-16 13:35:55	2025-04-16 13:35:55
697	58	Quattroporte	2025-04-16 13:35:55	2025-04-16 13:35:55
698	59	2	2025-04-16 13:35:55	2025-04-16 13:35:55
699	59	3	2025-04-16 13:35:55	2025-04-16 13:35:55
700	59	6	2025-04-16 13:35:55	2025-04-16 13:35:55
701	59	CX-3	2025-04-16 13:35:55	2025-04-16 13:35:55
702	59	CX-5	2025-04-16 13:35:55	2025-04-16 13:35:55
703	59	CX-9	2025-04-16 13:35:55	2025-04-16 13:35:55
704	60	57	2025-04-16 13:35:55	2025-04-16 13:35:55
705	60	62	2025-04-16 13:35:55	2025-04-16 13:35:55
706	59	626	2025-04-16 13:35:55	2025-04-16 13:35:55
707	59	6 Ultra	2025-04-16 13:35:55	2025-04-16 13:35:55
708	61	7	2025-04-16 13:35:55	2025-04-16 13:35:55
709	59	929	2025-04-16 13:35:55	2025-04-16 13:35:55
710	62	Armada	2025-04-16 13:35:55	2025-04-16 13:35:55
711	57	Avaitor	2025-04-16 13:35:55	2025-04-16 13:35:55
712	59	B-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
713	59	BT-50	2025-04-16 13:35:55	2025-04-16 13:35:55
714	58	Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
715	58	Coupe / Spyder	2025-04-16 13:35:55	2025-04-16 13:35:55
716	56	CT	2025-04-16 13:35:55	2025-04-16 13:35:55
717	56	CT 200H	2025-04-16 13:35:55	2025-04-16 13:35:55
718	63	CV-9	2025-04-16 13:35:55	2025-04-16 13:35:55
719	59	CX-7	2025-04-16 13:35:55	2025-04-16 13:35:55
720	55	Defender	2025-04-16 13:35:55	2025-04-16 13:35:55
721	64	Delta	2025-04-16 13:35:55	2025-04-16 13:35:55
722	59	Demio	2025-04-16 13:35:55	2025-04-16 13:35:55
723	46	Diablo	2025-04-16 13:35:55	2025-04-16 13:35:55
724	55	Discovery Sport	2025-04-16 13:35:55	2025-04-16 13:35:55
725	59	E2000	2025-04-16 13:35:55	2025-04-16 13:35:55
726	65	Elan	2025-04-16 13:35:55	2025-04-16 13:35:55
727	65	Elise	2025-04-16 13:35:55	2025-04-16 13:35:55
728	65	Esprit	2025-04-16 13:35:55	2025-04-16 13:35:55
729	65	Europa	2025-04-16 13:35:55	2025-04-16 13:35:55
730	65	Evora	2025-04-16 13:35:55	2025-04-16 13:35:55
731	65	Exige	2025-04-16 13:35:55	2025-04-16 13:35:55
732	64	Flavia	2025-04-16 13:35:55	2025-04-16 13:35:55
733	55	Freelander	2025-04-16 13:35:55	2025-04-16 13:35:55
734	55	Freelander V6	2025-04-16 13:35:55	2025-04-16 13:35:55
735	64	FX-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
736	46	Gallardo	2025-04-16 13:35:55	2025-04-16 13:35:55
737	58	Grancabrio	2025-04-16 13:35:55	2025-04-16 13:35:55
738	58	Ghibli	2025-04-16 13:35:55	2025-04-16 13:35:55
739	58	Gransport	2025-04-16 13:35:55	2025-04-16 13:35:55
740	56	GS	2025-04-16 13:35:55	2025-04-16 13:35:55
741	46	Huracan	2025-04-16 13:35:55	2025-04-16 13:35:55
742	55	HSE V8	2025-04-16 13:35:55	2025-04-16 13:35:55
743	56	IS-C	2025-04-16 13:35:55	2025-04-16 13:35:55
744	56	IS-F	2025-04-16 13:35:55	2025-04-16 13:35:55
745	56	LFA	2025-04-16 13:35:55	2025-04-16 13:35:55
746	46	LM	2025-04-16 13:35:55	2025-04-16 13:35:55
747	55	LR2	2025-04-16 13:35:55	2025-04-16 13:35:55
748	55	LR3	2025-04-16 13:35:55	2025-04-16 13:35:55
749	55	LR4	2025-04-16 13:35:55	2025-04-16 13:35:55
750	64	Lybra	2025-04-16 13:35:55	2025-04-16 13:35:55
751	57	LS	2025-04-16 13:35:55	2025-04-16 13:35:55
752	58	MC12	2025-04-16 13:35:55	2025-04-16 13:35:55
753	59	Miata	2025-04-16 13:35:55	2025-04-16 13:35:55
754	46	Miura	2025-04-16 13:35:55	2025-04-16 13:35:55
755	57	MKS	2025-04-16 13:35:55	2025-04-16 13:35:55
756	57	MKT	2025-04-16 13:35:55	2025-04-16 13:35:55
757	57	MK-T	2025-04-16 13:35:55	2025-04-16 13:35:55
758	46	Murcielago	2025-04-16 13:35:55	2025-04-16 13:35:55
759	59	MPV	2025-04-16 13:35:55	2025-04-16 13:35:55
760	64	Musa	2025-04-16 13:35:55	2025-04-16 13:35:55
761	59	MX-3	2025-04-16 13:35:55	2025-04-16 13:35:55
762	59	MX-5	2025-04-16 13:35:55	2025-04-16 13:35:55
763	59	MX-6	2025-04-16 13:35:55	2025-04-16 13:35:55
764	59	Navajo	2025-04-16 13:35:55	2025-04-16 13:35:55
765	56	NX	2025-04-16 13:35:55	2025-04-16 13:35:55
766	64	Phedra	2025-04-16 13:35:55	2025-04-16 13:35:55
767	59	Premacy	2025-04-16 13:35:55	2025-04-16 13:35:55
768	56	RC	2025-04-16 13:35:55	2025-04-16 13:35:55
769	56	RC F	2025-04-16 13:35:55	2025-04-16 13:35:55
770	63	S	2025-04-16 13:35:55	2025-04-16 13:35:55
771	61	S5	2025-04-16 13:35:55	2025-04-16 13:35:55
772	56	SC	2025-04-16 13:35:55	2025-04-16 13:35:55
773	62	Scorpio	2025-04-16 13:35:55	2025-04-16 13:35:55
774	58	Spyder	2025-04-16 13:35:55	2025-04-16 13:35:55
775	64	Thema	2025-04-16 13:35:55	2025-04-16 13:35:55
776	64	Thesis	2025-04-16 13:35:55	2025-04-16 13:35:55
777	57	Town Car	2025-04-16 13:35:55	2025-04-16 13:35:55
778	61	U6	2025-04-16 13:35:55	2025-04-16 13:35:55
779	64	Voyager	2025-04-16 13:35:55	2025-04-16 13:35:55
780	64	Y	2025-04-16 13:35:55	2025-04-16 13:35:55
781	66	C 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
782	66	C-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
783	66	E 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
784	66	E-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
785	66	G-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
786	66	GL-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
787	66	ML 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
788	66	S 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
789	66	S-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
790	66	Sl-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
791	67	Cooper	2025-04-16 13:35:55	2025-04-16 13:35:55
792	67	Cooper Clubman	2025-04-16 13:35:55	2025-04-16 13:35:55
793	67	Cooper Countryman	2025-04-16 13:35:55	2025-04-16 13:35:55
794	66	190	2025-04-16 13:35:55	2025-04-16 13:35:55
795	66	240/260/280	2025-04-16 13:35:55	2025-04-16 13:35:55
796	68	3	2025-04-16 13:35:55	2025-04-16 13:35:55
797	66	300/350/380	2025-04-16 13:35:55	2025-04-16 13:35:55
798	68	350	2025-04-16 13:35:55	2025-04-16 13:35:55
799	66	400/420	2025-04-16 13:35:55	2025-04-16 13:35:55
800	68	5	2025-04-16 13:35:55	2025-04-16 13:35:55
801	66	500/560	2025-04-16 13:35:55	2025-04-16 13:35:55
802	69	540C	2025-04-16 13:35:55	2025-04-16 13:35:55
803	69	570S	2025-04-16 13:35:55	2025-04-16 13:35:55
804	69	650S	2025-04-16 13:35:55	2025-04-16 13:35:55
805	68	6	2025-04-16 13:35:55	2025-04-16 13:35:55
806	69	675LT	2025-04-16 13:35:55	2025-04-16 13:35:55
807	68	750	2025-04-16 13:35:55	2025-04-16 13:35:55
808	66	A 45 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
809	66	A-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
810	66	B-Klasse Electric Drive	2025-04-16 13:35:55	2025-04-16 13:35:55
811	66	CLA-Klasse	2025-04-16 13:35:55	2025-04-16 13:35:55
812	66	CLC-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
813	66	CL-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
814	66	CLK-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
815	66	CLS 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
816	66	CLS-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
817	66	CLS Shooting Brake	2025-04-16 13:35:55	2025-04-16 13:35:55
818	67	Cooper S	2025-04-16 13:35:55	2025-04-16 13:35:55
819	70	Cougar	2025-04-16 13:35:55	2025-04-16 13:35:55
820	67	Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
821	66	E-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
822	69	F1	2025-04-16 13:35:55	2025-04-16 13:35:55
823	66	G 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
824	66	G 65 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
825	66	GLA-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
826	66	GLA-Klasse	2025-04-16 13:35:55	2025-04-16 13:35:55
827	66	GLC-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
828	66	GLE	2025-04-16 13:35:55	2025-04-16 13:35:55
829	66	GLE 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
830	66	GLE-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
831	66	GLE-Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
832	66	GLK-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
833	70	Grand Marquis	2025-04-16 13:35:55	2025-04-16 13:35:55
834	68	GS	2025-04-16 13:35:55	2025-04-16 13:35:55
835	66	G-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
836	70	Marauder	2025-04-16 13:35:55	2025-04-16 13:35:55
837	70	Marquis	2025-04-16 13:35:55	2025-04-16 13:35:55
838	70	Mariner	2025-04-16 13:35:55	2025-04-16 13:35:55
839	66	M-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
840	68	MG TF	2025-04-16 13:35:55	2025-04-16 13:35:55
841	68	MG ZR	2025-04-16 13:35:55	2025-04-16 13:35:55
842	68	MG ZS	2025-04-16 13:35:55	2025-04-16 13:35:55
843	68	Midget	2025-04-16 13:35:55	2025-04-16 13:35:55
844	70	Milan	2025-04-16 13:35:55	2025-04-16 13:35:55
845	70	Montego	2025-04-16 13:35:55	2025-04-16 13:35:55
846	70	Mountaineer	2025-04-16 13:35:55	2025-04-16 13:35:55
847	69	MP4-12C	2025-04-16 13:35:55	2025-04-16 13:35:55
848	69	P1	2025-04-16 13:35:55	2025-04-16 13:35:55
849	67	Paceman	2025-04-16 13:35:55	2025-04-16 13:35:55
850	59	Protege	2025-04-16 13:35:55	2025-04-16 13:35:55
851	66	R-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
852	67	Roadster	2025-04-16 13:35:55	2025-04-16 13:35:55
853	59	RX-6	2025-04-16 13:35:55	2025-04-16 13:35:55
854	59	RX-7	2025-04-16 13:35:55	2025-04-16 13:35:55
855	59	RX-8	2025-04-16 13:35:55	2025-04-16 13:35:55
856	66	S 65 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
857	70	Sable	2025-04-16 13:35:55	2025-04-16 13:35:55
858	66	S-Class Maybach	2025-04-16 13:35:55	2025-04-16 13:35:55
859	69	SLR	2025-04-16 13:35:55	2025-04-16 13:35:55
860	66	SL 65 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
861	66	SLR	2025-04-16 13:35:55	2025-04-16 13:35:55
862	66	SLR McLaren	2025-04-16 13:35:55	2025-04-16 13:35:55
863	66	SLS	2025-04-16 13:35:55	2025-04-16 13:35:55
864	66	SLS AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
865	66	SLS AMG Elektro	2025-04-16 13:35:55	2025-04-16 13:35:55
866	66	SLS AMG Roadster	2025-04-16 13:35:55	2025-04-16 13:35:55
867	66	Sprinter	2025-04-16 13:35:55	2025-04-16 13:35:55
868	59	T 3500	2025-04-16 13:35:55	2025-04-16 13:35:55
869	59	Tribute	2025-04-16 13:35:55	2025-04-16 13:35:55
870	66	Vaneo	2025-04-16 13:35:55	2025-04-16 13:35:55
871	66	Viano	2025-04-16 13:35:55	2025-04-16 13:35:55
872	66	Vito	2025-04-16 13:35:55	2025-04-16 13:35:55
873	66	V-Klasse	2025-04-16 13:35:55	2025-04-16 13:35:55
874	59	Xedos	2025-04-16 13:35:55	2025-04-16 13:35:55
875	59	Xedos 9	2025-04-16 13:35:55	2025-04-16 13:35:55
876	70	Zephyr	2025-04-16 13:35:55	2025-04-16 13:35:55
877	71	ASX	2025-04-16 13:35:55	2025-04-16 13:35:55
878	71	Lancer	2025-04-16 13:35:55	2025-04-16 13:35:55
879	71	Lancer EX	2025-04-16 13:35:55	2025-04-16 13:35:55
880	71	Outlander	2025-04-16 13:35:55	2025-04-16 13:35:55
881	71	Pajero	2025-04-16 13:35:55	2025-04-16 13:35:55
882	72	Altima	2025-04-16 13:35:55	2025-04-16 13:35:55
883	72	Patrol	2025-04-16 13:35:55	2025-04-16 13:35:55
884	72	Juke	2025-04-16 13:35:55	2025-04-16 13:35:55
885	72	370Z	2025-04-16 13:35:55	2025-04-16 13:35:55
886	72	Armada	2025-04-16 13:35:55	2025-04-16 13:35:55
887	72	GT-R	2025-04-16 13:35:55	2025-04-16 13:35:55
888	72	Maxima	2025-04-16 13:35:55	2025-04-16 13:35:55
889	72	Murano	2025-04-16 13:35:55	2025-04-16 13:35:55
890	72	Pathfinder	2025-04-16 13:35:55	2025-04-16 13:35:55
891	72	Patrol Safari	2025-04-16 13:35:55	2025-04-16 13:35:55
892	72	Sentra	2025-04-16 13:35:55	2025-04-16 13:35:55
893	72	Sunny	2025-04-16 13:35:55	2025-04-16 13:35:55
894	72	Tiida	2025-04-16 13:35:55	2025-04-16 13:35:55
895	72	Xterra	2025-04-16 13:35:55	2025-04-16 13:35:55
896	72	Xtrail	2025-04-16 13:35:55	2025-04-16 13:35:55
897	72	300Z	2025-04-16 13:35:55	2025-04-16 13:35:55
898	72	350Z	2025-04-16 13:35:55	2025-04-16 13:35:55
899	73	3-Wheeler	2025-04-16 13:35:55	2025-04-16 13:35:55
900	73	4-Apr	2025-04-16 13:35:55	2025-04-16 13:35:55
901	73	Aero 8	2025-04-16 13:35:55	2025-04-16 13:35:55
902	73	Aero Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
903	72	Almera	2025-04-16 13:35:55	2025-04-16 13:35:55
904	72	Almera Tino	2025-04-16 13:35:55	2025-04-16 13:35:55
905	71	Attrage	2025-04-16 13:35:55	2025-04-16 13:35:55
906	72	Atleon 140	2025-04-16 13:35:55	2025-04-16 13:35:55
907	72	Bluebird	2025-04-16 13:35:55	2025-04-16 13:35:55
908	72	Cabstar	2025-04-16 13:35:55	2025-04-16 13:35:55
909	71	Canter	2025-04-16 13:35:55	2025-04-16 13:35:55
910	71	Carisma	2025-04-16 13:35:55	2025-04-16 13:35:55
911	72	Cedric	2025-04-16 13:35:55	2025-04-16 13:35:55
912	71	Celeste	2025-04-16 13:35:55	2025-04-16 13:35:55
913	72	Civilian	2025-04-16 13:35:55	2025-04-16 13:35:55
914	71	Colt	2025-04-16 13:35:55	2025-04-16 13:35:55
915	71	Colt Neu	2025-04-16 13:35:55	2025-04-16 13:35:55
916	71	Cordia	2025-04-16 13:35:55	2025-04-16 13:35:55
917	74	Countryman	2025-04-16 13:35:55	2025-04-16 13:35:55
918	72	Cube	2025-04-16 13:35:55	2025-04-16 13:35:55
919	75	Cutlass	2025-04-16 13:35:55	2025-04-16 13:35:55
920	71	Delica	2025-04-16 13:35:55	2025-04-16 13:35:55
921	71	Eclipse	2025-04-16 13:35:55	2025-04-16 13:35:55
922	71	Electric Vehicle	2025-04-16 13:35:55	2025-04-16 13:35:55
923	71	Endeavor	2025-04-16 13:35:55	2025-04-16 13:35:55
924	71	Evolution	2025-04-16 13:35:55	2025-04-16 13:35:55
925	71	Fortis	2025-04-16 13:35:55	2025-04-16 13:35:55
926	71	Galant	2025-04-16 13:35:55	2025-04-16 13:35:55
927	72	Gloria	2025-04-16 13:35:55	2025-04-16 13:35:55
928	71	Grandis	2025-04-16 13:35:55	2025-04-16 13:35:55
929	71	I-Miev	2025-04-16 13:35:55	2025-04-16 13:35:55
930	71	L200	2025-04-16 13:35:55	2025-04-16 13:35:55
931	71	L300	2025-04-16 13:35:55	2025-04-16 13:35:55
932	71	Lancer Evolution	2025-04-16 13:35:55	2025-04-16 13:35:55
933	71	Lancer Fortis	2025-04-16 13:35:55	2025-04-16 13:35:55
934	72	LEAF	2025-04-16 13:35:55	2025-04-16 13:35:55
935	76	M400	2025-04-16 13:35:55	2025-04-16 13:35:55
936	76	M600	2025-04-16 13:35:55	2025-04-16 13:35:55
937	71	Magna	2025-04-16 13:35:55	2025-04-16 13:35:55
938	72	Micra	2025-04-16 13:35:55	2025-04-16 13:35:55
939	74	Mini II	2025-04-16 13:35:55	2025-04-16 13:35:55
940	72	Minivan	2025-04-16 13:35:55	2025-04-16 13:35:55
941	71	Minivan	2025-04-16 13:35:55	2025-04-16 13:35:55
942	71	Mirage	2025-04-16 13:35:55	2025-04-16 13:35:55
943	71	Nativa	2025-04-16 13:35:55	2025-04-16 13:35:55
944	72	Navara	2025-04-16 13:35:55	2025-04-16 13:35:55
945	72	Note	2025-04-16 13:35:55	2025-04-16 13:35:55
946	74	Paceman	2025-04-16 13:35:55	2025-04-16 13:35:55
947	71	Pajero Pinin	2025-04-16 13:35:55	2025-04-16 13:35:55
948	72	Pathfinder Classic	2025-04-16 13:35:55	2025-04-16 13:35:55
949	72	Patrol GR	2025-04-16 13:35:55	2025-04-16 13:35:55
950	72	Pickup	2025-04-16 13:35:55	2025-04-16 13:35:55
951	71	PickUp	2025-04-16 13:35:55	2025-04-16 13:35:55
952	72	Pixo	2025-04-16 13:35:55	2025-04-16 13:35:55
953	73	Plus 4	2025-04-16 13:35:55	2025-04-16 13:35:55
954	73	Plus 8	2025-04-16 13:35:55	2025-04-16 13:35:55
955	72	Primera	2025-04-16 13:35:55	2025-04-16 13:35:55
956	72	Pulsar	2025-04-16 13:35:55	2025-04-16 13:35:55
957	72	Qashqai	2025-04-16 13:35:55	2025-04-16 13:35:55
958	72	Quest	2025-04-16 13:35:55	2025-04-16 13:35:55
959	71	Rosa	2025-04-16 13:35:55	2025-04-16 13:35:55
960	72	S130	2025-04-16 13:35:55	2025-04-16 13:35:55
961	71	Sapporo	2025-04-16 13:35:55	2025-04-16 13:35:55
962	75	Silhouette	2025-04-16 13:35:55	2025-04-16 13:35:55
963	72	Skyline	2025-04-16 13:35:55	2025-04-16 13:35:55
964	71	Space Star	2025-04-16 13:35:55	2025-04-16 13:35:55
965	71	SpaceWagon	2025-04-16 13:35:55	2025-04-16 13:35:55
966	71	Space Wagon	2025-04-16 13:35:55	2025-04-16 13:35:55
967	72	TEANA	2025-04-16 13:35:55	2025-04-16 13:35:55
968	72	Terrano	2025-04-16 13:35:55	2025-04-16 13:35:55
969	75	Toronado	2025-04-16 13:35:55	2025-04-16 13:35:55
970	72	Titan	2025-04-16 13:35:55	2025-04-16 13:35:55
971	72	UD	2025-04-16 13:35:55	2025-04-16 13:35:55
972	72	Urvan	2025-04-16 13:35:55	2025-04-16 13:35:55
973	72	Versa	2025-04-16 13:35:55	2025-04-16 13:35:55
974	77	2008	2025-04-16 13:35:55	2025-04-16 13:35:55
975	77	208	2025-04-16 13:35:55	2025-04-16 13:35:55
976	77	3008	2025-04-16 13:35:55	2025-04-16 13:35:55
977	77	301	2025-04-16 13:35:55	2025-04-16 13:35:55
978	77	308	2025-04-16 13:35:55	2025-04-16 13:35:55
979	77	5008	2025-04-16 13:35:55	2025-04-16 13:35:55
980	77	508	2025-04-16 13:35:55	2025-04-16 13:35:55
981	77	RCZ	2025-04-16 13:35:55	2025-04-16 13:35:55
982	78	Boxster	2025-04-16 13:35:55	2025-04-16 13:35:55
983	78	Cayenne	2025-04-16 13:35:55	2025-04-16 13:35:55
984	78	Cayman	2025-04-16 13:35:55	2025-04-16 13:35:55
985	78	Panamera	2025-04-16 13:35:55	2025-04-16 13:35:55
986	77	106	2025-04-16 13:35:55	2025-04-16 13:35:55
987	77	107	2025-04-16 13:35:55	2025-04-16 13:35:55
988	77	108	2025-04-16 13:35:55	2025-04-16 13:35:55
989	79	1500	2025-04-16 13:35:55	2025-04-16 13:35:55
990	77	205	2025-04-16 13:35:55	2025-04-16 13:35:55
991	77	206	2025-04-16 13:35:55	2025-04-16 13:35:55
992	77	207	2025-04-16 13:35:55	2025-04-16 13:35:55
993	77	306	2025-04-16 13:35:55	2025-04-16 13:35:55
994	77	307	2025-04-16 13:35:55	2025-04-16 13:35:55
995	77	4007	2025-04-16 13:35:55	2025-04-16 13:35:55
996	77	4008	2025-04-16 13:35:55	2025-04-16 13:35:55
997	77	406	2025-04-16 13:35:55	2025-04-16 13:35:55
998	77	407	2025-04-16 13:35:55	2025-04-16 13:35:55
999	77	408	2025-04-16 13:35:55	2025-04-16 13:35:55
1000	77	504	2025-04-16 13:35:55	2025-04-16 13:35:55
1001	77	505	2025-04-16 13:35:55	2025-04-16 13:35:55
1002	77	604	2025-04-16 13:35:55	2025-04-16 13:35:55
1003	77	605	2025-04-16 13:35:55	2025-04-16 13:35:55
1004	77	607	2025-04-16 13:35:55	2025-04-16 13:35:55
1005	77	807	2025-04-16 13:35:55	2025-04-16 13:35:55
1006	78	911 Carrera	2025-04-16 13:35:55	2025-04-16 13:35:55
1007	78	911 Carrera 4	2025-04-16 13:35:55	2025-04-16 13:35:55
1008	78	911 Carrera 4 GTS	2025-04-16 13:35:55	2025-04-16 13:35:55
1009	78	911 Carrera 4S	2025-04-16 13:35:55	2025-04-16 13:35:55
1010	78	911 Carrera GTS	2025-04-16 13:35:55	2025-04-16 13:35:55
1011	78	911 Carrera S	2025-04-16 13:35:55	2025-04-16 13:35:55
1012	78	911 GT2	2025-04-16 13:35:55	2025-04-16 13:35:55
1013	78	911 GT3	2025-04-16 13:35:55	2025-04-16 13:35:55
1014	78	911 GT3 RS	2025-04-16 13:35:55	2025-04-16 13:35:55
1015	78	911 Speedster	2025-04-16 13:35:55	2025-04-16 13:35:55
1016	78	911 Targa 4	2025-04-16 13:35:55	2025-04-16 13:35:55
1017	78	911 Targa 4S	2025-04-16 13:35:55	2025-04-16 13:35:55
1018	78	911 Targa GTS	2025-04-16 13:35:55	2025-04-16 13:35:55
1019	78	911 Turbo	2025-04-16 13:35:55	2025-04-16 13:35:55
1020	78	911 Turbo S	2025-04-16 13:35:55	2025-04-16 13:35:55
1021	78	918	2025-04-16 13:35:55	2025-04-16 13:35:55
1022	78	928	2025-04-16 13:35:55	2025-04-16 13:35:55
1023	78	944	2025-04-16 13:35:55	2025-04-16 13:35:55
1024	78	968	2025-04-16 13:35:55	2025-04-16 13:35:55
1025	78	9FF	2025-04-16 13:35:55	2025-04-16 13:35:55
1026	80	Adam	2025-04-16 13:35:55	2025-04-16 13:35:55
1027	80	Agila	2025-04-16 13:35:55	2025-04-16 13:35:55
1028	80	Ampera	2025-04-16 13:35:55	2025-04-16 13:35:55
1029	80	Antara	2025-04-16 13:35:55	2025-04-16 13:35:55
1030	80	Astra OPC	2025-04-16 13:35:56	2025-04-16 13:35:56
1031	80	Astra	2025-04-16 13:35:56	2025-04-16 13:35:56
1032	77	Bipper	2025-04-16 13:35:56	2025-04-16 13:35:56
1033	77	Boxer	2025-04-16 13:35:56	2025-04-16 13:35:56
1034	80	Cascada	2025-04-16 13:35:56	2025-04-16 13:35:56
1035	80	Combo	2025-04-16 13:35:56	2025-04-16 13:35:56
1036	80	Corsa	2025-04-16 13:35:56	2025-04-16 13:35:56
1037	77	Expert	2025-04-16 13:35:56	2025-04-16 13:35:56
1038	80	Frontera	2025-04-16 13:35:56	2025-04-16 13:35:56
1039	81	Gen-2	2025-04-16 13:35:56	2025-04-16 13:35:56
1040	82	Grand AM	2025-04-16 13:35:56	2025-04-16 13:35:56
1041	80	GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1042	82	GTO	2025-04-16 13:35:56	2025-04-16 13:35:56
1043	83	Huayra	2025-04-16 13:35:56	2025-04-16 13:35:56
1044	80	Insignia	2025-04-16 13:35:56	2025-04-16 13:35:56
1045	80	Insignia Country Tourer	2025-04-16 13:35:56	2025-04-16 13:35:56
1046	77	Ion	2025-04-16 13:35:56	2025-04-16 13:35:56
1047	80	Kadett	2025-04-16 13:35:56	2025-04-16 13:35:56
1048	80	Karl	2025-04-16 13:35:56	2025-04-16 13:35:56
1049	78	Macan	2025-04-16 13:35:56	2025-04-16 13:35:56
1050	80	Meriva	2025-04-16 13:35:56	2025-04-16 13:35:56
1051	80	Mokka	2025-04-16 13:35:56	2025-04-16 13:35:56
1052	80	Omega	2025-04-16 13:35:56	2025-04-16 13:35:56
1053	77	Partner	2025-04-16 13:35:56	2025-04-16 13:35:56
1054	77	RC7	2025-04-16 13:35:56	2025-04-16 13:35:56
1055	81	Savvy	2025-04-16 13:35:56	2025-04-16 13:35:56
1056	80	Signum	2025-04-16 13:35:56	2025-04-16 13:35:56
1057	82	Solstice	2025-04-16 13:35:56	2025-04-16 13:35:56
1058	84	Speedster	2025-04-16 13:35:56	2025-04-16 13:35:56
1059	80	Speedster	2025-04-16 13:35:56	2025-04-16 13:35:56
1060	85	Spirra	2025-04-16 13:35:56	2025-04-16 13:35:56
1061	80	Tigra	2025-04-16 13:35:56	2025-04-16 13:35:56
1062	80	Tigra Twin Top	2025-04-16 13:35:56	2025-04-16 13:35:56
1063	80	Vectra	2025-04-16 13:35:56	2025-04-16 13:35:56
1064	80	Vita	2025-04-16 13:35:56	2025-04-16 13:35:56
1065	81	Waja	2025-04-16 13:35:56	2025-04-16 13:35:56
1066	82	Wave	2025-04-16 13:35:56	2025-04-16 13:35:56
1067	81	Wira	2025-04-16 13:35:56	2025-04-16 13:35:56
1068	77	X Line	2025-04-16 13:35:56	2025-04-16 13:35:56
1069	80	Zafira	2025-04-16 13:35:56	2025-04-16 13:35:56
1070	83	Zonda	2025-04-16 13:35:56	2025-04-16 13:35:56
1071	86	Captur	2025-04-16 13:35:56	2025-04-16 13:35:56
1072	86	Duster	2025-04-16 13:35:56	2025-04-16 13:35:56
1073	86	Koleos	2025-04-16 13:35:56	2025-04-16 13:35:56
1074	86	Megane	2025-04-16 13:35:56	2025-04-16 13:35:56
1075	86	Symbol	2025-04-16 13:35:56	2025-04-16 13:35:56
1076	87	Ghost	2025-04-16 13:35:56	2025-04-16 13:35:56
1077	87	Phantom	2025-04-16 13:35:56	2025-04-16 13:35:56
1078	87	Wraith	2025-04-16 13:35:56	2025-04-16 13:35:56
1079	88	900	2025-04-16 13:35:56	2025-04-16 13:35:56
1080	88	9000	2025-04-16 13:35:56	2025-04-16 13:35:56
1081	88	3-Sep	2025-04-16 13:35:56	2025-04-16 13:35:56
1082	88	5-Sep	2025-04-16 13:35:56	2025-04-16 13:35:56
1083	88	9-7X	2025-04-16 13:35:56	2025-04-16 13:35:56
1084	89	Actyon	2025-04-16 13:35:56	2025-04-16 13:35:56
1085	90	Alhambra	2025-04-16 13:35:56	2025-04-16 13:35:56
1086	90	Altea	2025-04-16 13:35:56	2025-04-16 13:35:56
1087	90	Arosa	2025-04-16 13:35:56	2025-04-16 13:35:56
1088	91	B9 Tribeca	2025-04-16 13:35:56	2025-04-16 13:35:56
1089	91	BRZ	2025-04-16 13:35:56	2025-04-16 13:35:56
1090	92	C8	2025-04-16 13:35:56	2025-04-16 13:35:56
1091	93	Citigo	2025-04-16 13:35:56	2025-04-16 13:35:56
1092	86	Clio	2025-04-16 13:35:56	2025-04-16 13:35:56
1093	86	Clio RS	2025-04-16 13:35:56	2025-04-16 13:35:56
1094	90	Cordoba	2025-04-16 13:35:56	2025-04-16 13:35:56
1095	87	Corniche	2025-04-16 13:35:56	2025-04-16 13:35:56
1096	92	D12	2025-04-16 13:35:56	2025-04-16 13:35:56
1097	86	Dokker	2025-04-16 13:35:56	2025-04-16 13:35:56
1098	87	Drophead	2025-04-16 13:35:56	2025-04-16 13:35:56
1099	86	Espace	2025-04-16 13:35:56	2025-04-16 13:35:56
1100	90	Exeo	2025-04-16 13:35:56	2025-04-16 13:35:56
1101	93	Fabia	2025-04-16 13:35:56	2025-04-16 13:35:56
1102	93	Felicia	2025-04-16 13:35:56	2025-04-16 13:35:56
1103	86	Fluence	2025-04-16 13:35:56	2025-04-16 13:35:56
1104	86	Fluence Elektro	2025-04-16 13:35:56	2025-04-16 13:35:56
1105	91	Forester	2025-04-16 13:35:56	2025-04-16 13:35:56
1106	94	Forfour	2025-04-16 13:35:56	2025-04-16 13:35:56
1107	94	Fortwo	2025-04-16 13:35:56	2025-04-16 13:35:56
1108	90	Ibiza	2025-04-16 13:35:56	2025-04-16 13:35:56
1109	91	Impreza	2025-04-16 13:35:56	2025-04-16 13:35:56
1110	90	Inca	2025-04-16 13:35:56	2025-04-16 13:35:56
1111	91	Justy	2025-04-16 13:35:56	2025-04-16 13:35:56
1112	91	Justy G3X	2025-04-16 13:35:56	2025-04-16 13:35:56
1113	86	Kadjar	2025-04-16 13:35:56	2025-04-16 13:35:56
1114	89	Korando	2025-04-16 13:35:56	2025-04-16 13:35:56
1115	89	Kyron	2025-04-16 13:35:56	2025-04-16 13:35:56
1116	86	Kangoo	2025-04-16 13:35:56	2025-04-16 13:35:56
1117	86	Laguna	2025-04-16 13:35:56	2025-04-16 13:35:56
1118	86	Latitude	2025-04-16 13:35:56	2025-04-16 13:35:56
1119	95	Land	2025-04-16 13:35:56	2025-04-16 13:35:56
1120	91	Legacy	2025-04-16 13:35:56	2025-04-16 13:35:56
1121	90	Leon	2025-04-16 13:35:56	2025-04-16 13:35:56
1122	86	Logan	2025-04-16 13:35:56	2025-04-16 13:35:56
1123	86	Master	2025-04-16 13:35:56	2025-04-16 13:35:56
1124	90	Mii	2025-04-16 13:35:56	2025-04-16 13:35:56
1125	86	Modus	2025-04-16 13:35:56	2025-04-16 13:35:56
1126	89	Musso	2025-04-16 13:35:56	2025-04-16 13:35:56
1127	93	Octavia	2025-04-16 13:35:56	2025-04-16 13:35:56
1128	87	Park Ward	2025-04-16 13:35:56	2025-04-16 13:35:56
1129	87	Phantom Series II	2025-04-16 13:35:56	2025-04-16 13:35:56
1130	86	R12	2025-04-16 13:35:56	2025-04-16 13:35:56
1131	86	R19	2025-04-16 13:35:56	2025-04-16 13:35:56
1132	86	R9	2025-04-16 13:35:56	2025-04-16 13:35:56
1133	93	Rapid	2025-04-16 13:35:56	2025-04-16 13:35:56
1134	89	Rexton	2025-04-16 13:35:56	2025-04-16 13:35:56
1135	89	Rodius	2025-04-16 13:35:56	2025-04-16 13:35:56
1136	93	Roomster	2025-04-16 13:35:56	2025-04-16 13:35:56
1137	95	Rover 25	2025-04-16 13:35:56	2025-04-16 13:35:56
1138	95	Rover 45	2025-04-16 13:35:56	2025-04-16 13:35:56
1139	95	Rover 75	2025-04-16 13:35:56	2025-04-16 13:35:56
1140	95	Rover Streetwise	2025-04-16 13:35:56	2025-04-16 13:35:56
1141	88	Saab 9-3 X	2025-04-16 13:35:56	2025-04-16 13:35:56
1142	88	Saab 9-4X	2025-04-16 13:35:56	2025-04-16 13:35:56
1143	86	Safrane	2025-04-16 13:35:56	2025-04-16 13:35:56
1144	86	Sandero	2025-04-16 13:35:56	2025-04-16 13:35:56
1145	86	Scenic	2025-04-16 13:35:56	2025-04-16 13:35:56
1146	87	Silver Cloud	2025-04-16 13:35:56	2025-04-16 13:35:56
1147	87	Silver Race	2025-04-16 13:35:56	2025-04-16 13:35:56
1148	87	Silver Seraph	2025-04-16 13:35:56	2025-04-16 13:35:56
1149	87	Silver Shadow II	2025-04-16 13:35:56	2025-04-16 13:35:56
1150	87	Silver Shadow One	2025-04-16 13:35:56	2025-04-16 13:35:56
1151	87	Silver Spur	2025-04-16 13:35:56	2025-04-16 13:35:56
1152	87	Silver Spur II	2025-04-16 13:35:56	2025-04-16 13:35:56
1153	87	Silver Wraith	2025-04-16 13:35:56	2025-04-16 13:35:56
1154	94	Smart Fortwo Elektro	2025-04-16 13:35:56	2025-04-16 13:35:56
1155	94	Smart roadster	2025-04-16 13:35:56	2025-04-16 13:35:56
1156	93	Superb	2025-04-16 13:35:56	2025-04-16 13:35:56
1157	89	Tivoli	2025-04-16 13:35:56	2025-04-16 13:35:56
1158	90	Toledo	2025-04-16 13:35:56	2025-04-16 13:35:56
1159	86	Trafic	2025-04-16 13:35:56	2025-04-16 13:35:56
1160	91	Trezia	2025-04-16 13:35:56	2025-04-16 13:35:56
1161	86	Twingo	2025-04-16 13:35:56	2025-04-16 13:35:56
1162	86	Twizy	2025-04-16 13:35:56	2025-04-16 13:35:56
1163	95	VL 75	2025-04-16 13:35:56	2025-04-16 13:35:56
1164	86	Wind	2025-04-16 13:35:56	2025-04-16 13:35:56
1165	93	Yeti	2025-04-16 13:35:56	2025-04-16 13:35:56
1166	86	ZOE	2025-04-16 13:35:56	2025-04-16 13:35:56
1167	86	ZOE	2025-04-16 13:35:56	2025-04-16 13:35:56
1168	96	APV	2025-04-16 13:35:56	2025-04-16 13:35:56
1169	96	Carry	2025-04-16 13:35:56	2025-04-16 13:35:56
1170	96	Celerio	2025-04-16 13:35:56	2025-04-16 13:35:56
1171	96	Ertiga	2025-04-16 13:35:56	2025-04-16 13:35:56
1172	96	Grand Vitara	2025-04-16 13:35:56	2025-04-16 13:35:56
1173	96	Jimny	2025-04-16 13:35:56	2025-04-16 13:35:56
1174	96	Kizashi	2025-04-16 13:35:56	2025-04-16 13:35:56
1175	97	86	2025-04-16 13:35:56	2025-04-16 13:35:56
1176	97	Avalon	2025-04-16 13:35:56	2025-04-16 13:35:56
1177	97	Camry	2025-04-16 13:35:56	2025-04-16 13:35:56
1178	97	Corolla	2025-04-16 13:35:56	2025-04-16 13:35:56
1179	97	FJ Cruiser	2025-04-16 13:35:56	2025-04-16 13:35:56
1180	97	Fortuner	2025-04-16 13:35:56	2025-04-16 13:35:56
1181	97	Innova	2025-04-16 13:35:56	2025-04-16 13:35:56
1182	97	Land Cruiser	2025-04-16 13:35:56	2025-04-16 13:35:56
1183	97	Prado	2025-04-16 13:35:56	2025-04-16 13:35:56
1184	97	Previa	2025-04-16 13:35:56	2025-04-16 13:35:56
1185	97	Prius	2025-04-16 13:35:56	2025-04-16 13:35:56
1186	97	RAV4	2025-04-16 13:35:56	2025-04-16 13:35:56
1187	97	Yaris	2025-04-16 13:35:56	2025-04-16 13:35:56
1188	98	Beetle	2025-04-16 13:35:56	2025-04-16 13:35:56
1189	98	Golf	2025-04-16 13:35:56	2025-04-16 13:35:56
1190	98	Golf R	2025-04-16 13:35:56	2025-04-16 13:35:56
1191	98	Jetta	2025-04-16 13:35:56	2025-04-16 13:35:56
1192	99	1618	2025-04-16 13:35:56	2025-04-16 13:35:56
1193	97	4Runner	2025-04-16 13:35:56	2025-04-16 13:35:56
1194	96	Alto	2025-04-16 13:35:56	2025-04-16 13:35:56
1195	96	APV Van	2025-04-16 13:35:56	2025-04-16 13:35:56
1196	98	Amarok	2025-04-16 13:35:56	2025-04-16 13:35:56
1197	97	Aurion	2025-04-16 13:35:56	2025-04-16 13:35:56
1198	97	Auris	2025-04-16 13:35:56	2025-04-16 13:35:56
1199	97	Avanza	2025-04-16 13:35:56	2025-04-16 13:35:56
1200	97	Avensis	2025-04-16 13:35:56	2025-04-16 13:35:56
1201	97	Avensis Verso	2025-04-16 13:35:56	2025-04-16 13:35:56
1202	97	Aygo	2025-04-16 13:35:56	2025-04-16 13:35:56
1203	96	Baleno	2025-04-16 13:35:56	2025-04-16 13:35:56
1204	98	Bora	2025-04-16 13:35:56	2025-04-16 13:35:56
1205	98	Cabrio	2025-04-16 13:35:56	2025-04-16 13:35:56
1206	98	Caddy	2025-04-16 13:35:56	2025-04-16 13:35:56
1207	97	Carina	2025-04-16 13:35:56	2025-04-16 13:35:56
1208	98	CC	2025-04-16 13:35:56	2025-04-16 13:35:56
1209	97	Celica	2025-04-16 13:35:56	2025-04-16 13:35:56
1210	96	Ciaz	2025-04-16 13:35:56	2025-04-16 13:35:56
1211	97	Coaster	2025-04-16 13:35:56	2025-04-16 13:35:56
1212	97	Corolla Verso	2025-04-16 13:35:56	2025-04-16 13:35:56
1213	97	Corona	2025-04-16 13:35:56	2025-04-16 13:35:56
1214	98	Crafter	2025-04-16 13:35:56	2025-04-16 13:35:56
1215	97	Cressida	2025-04-16 13:35:56	2025-04-16 13:35:56
1216	97	Crown	2025-04-16 13:35:56	2025-04-16 13:35:56
1217	97	Echo	2025-04-16 13:35:56	2025-04-16 13:35:56
1218	98	EOS	2025-04-16 13:35:56	2025-04-16 13:35:56
1219	98	Eurovan	2025-04-16 13:35:56	2025-04-16 13:35:56
1220	98	Golf Plus	2025-04-16 13:35:56	2025-04-16 13:35:56
1221	98	Golf R32	2025-04-16 13:35:56	2025-04-16 13:35:56
1222	97	GT86	2025-04-16 13:35:56	2025-04-16 13:35:56
1223	98	GTI	2025-04-16 13:35:56	2025-04-16 13:35:56
1224	97	Hiace	2025-04-16 13:35:56	2025-04-16 13:35:56
1225	97	Hilux	2025-04-16 13:35:56	2025-04-16 13:35:56
1226	96	Ignis	2025-04-16 13:35:56	2025-04-16 13:35:56
1227	99	Indica	2025-04-16 13:35:56	2025-04-16 13:35:56
1228	97	IQ	2025-04-16 13:35:56	2025-04-16 13:35:56
1229	97	Land Cruiser 70	2025-04-16 13:35:56	2025-04-16 13:35:56
1230	97	Land Cruiser V8	2025-04-16 13:35:56	2025-04-16 13:35:56
1231	96	Liana	2025-04-16 13:35:56	2025-04-16 13:35:56
1232	99	Manza	2025-04-16 13:35:56	2025-04-16 13:35:56
1233	97	MR2	2025-04-16 13:35:56	2025-04-16 13:35:56
1234	97	MR 2	2025-04-16 13:35:56	2025-04-16 13:35:56
1235	97	Prius+	2025-04-16 13:35:56	2025-04-16 13:35:56
1236	99	Safari	2025-04-16 13:35:56	2025-04-16 13:35:56
1237	97	Scion	2025-04-16 13:35:56	2025-04-16 13:35:56
1238	97	Sequoia	2025-04-16 13:35:56	2025-04-16 13:35:56
1239	97	Sienna	2025-04-16 13:35:56	2025-04-16 13:35:56
1240	97	Solara	2025-04-16 13:35:56	2025-04-16 13:35:56
1241	96	Splash	2025-04-16 13:35:56	2025-04-16 13:35:56
1242	97	Starlet	2025-04-16 13:35:56	2025-04-16 13:35:56
1243	97	Supra	2025-04-16 13:35:56	2025-04-16 13:35:56
1244	96	SX4	2025-04-16 13:35:56	2025-04-16 13:35:56
1245	96	Swift	2025-04-16 13:35:56	2025-04-16 13:35:56
1246	96	SX4 S-Cross	2025-04-16 13:35:56	2025-04-16 13:35:56
1247	99	Telcoline	2025-04-16 13:35:56	2025-04-16 13:35:56
1248	97	Tacoma	2025-04-16 13:35:56	2025-04-16 13:35:56
1249	97	Tercel	2025-04-16 13:35:56	2025-04-16 13:35:56
1250	100	Tigr	2025-04-16 13:35:56	2025-04-16 13:35:56
1251	91	Tribeca	2025-04-16 13:35:56	2025-04-16 13:35:56
1252	97	Tundra	2025-04-16 13:35:56	2025-04-16 13:35:56
1253	97	Urban Cruiser	2025-04-16 13:35:56	2025-04-16 13:35:56
1254	97	Venza	2025-04-16 13:35:56	2025-04-16 13:35:56
1255	96	Verona	2025-04-16 13:35:56	2025-04-16 13:35:56
1256	97	Verso	2025-04-16 13:35:56	2025-04-16 13:35:56
1257	97	Verso S	2025-04-16 13:35:56	2025-04-16 13:35:56
1258	96	Vitara	2025-04-16 13:35:56	2025-04-16 13:35:56
1259	96	Wagon R+	2025-04-16 13:35:56	2025-04-16 13:35:56
1260	91	WRX	2025-04-16 13:35:56	2025-04-16 13:35:56
1261	91	WRX STI	2025-04-16 13:35:56	2025-04-16 13:35:56
1262	97	XA	2025-04-16 13:35:56	2025-04-16 13:35:56
1263	99	Xenon	2025-04-16 13:35:56	2025-04-16 13:35:56
1264	96	XL7	2025-04-16 13:35:56	2025-04-16 13:35:56
1265	91	XV	2025-04-16 13:35:56	2025-04-16 13:35:56
1266	97	Zalas	2025-04-16 13:35:56	2025-04-16 13:35:56
1267	98	Passat	2025-04-16 13:35:56	2025-04-16 13:35:56
1268	98	Scirocco	2025-04-16 13:35:56	2025-04-16 13:35:56
1269	98	Tiguan	2025-04-16 13:35:56	2025-04-16 13:35:56
1270	98	Touareg	2025-04-16 13:35:56	2025-04-16 13:35:56
1271	101	960	2025-04-16 13:35:56	2025-04-16 13:35:56
1272	101	S90	2025-04-16 13:35:56	2025-04-16 13:35:56
1273	101	V90	2025-04-16 13:35:56	2025-04-16 13:35:56
1274	101	XC60	2025-04-16 13:35:56	2025-04-16 13:35:56
1275	101	XC90	2025-04-16 13:35:56	2025-04-16 13:35:56
1276	2	A4	2025-04-16 13:35:56	2025-04-16 13:35:56
1277	8	tst	2025-04-16 13:35:56	2025-04-16 13:35:56
1278	9	dfadsfdfd	2025-04-16 13:35:56	2025-04-16 13:35:56
1279	7	ewetet	2025-04-16 13:35:56	2025-04-16 13:35:56
1280	102	GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1281	5	145	2025-04-16 13:35:56	2025-04-16 13:35:56
1282	7	test	2025-04-16 13:35:56	2025-04-16 13:35:56
1283	7	test	2025-04-16 13:35:56	2025-04-16 13:35:56
1284	1	DB11	2025-04-16 13:35:56	2025-04-16 13:35:56
1285	1	DB11 Volante	2025-04-16 13:35:56	2025-04-16 13:35:56
1286	57	Continental	2025-04-16 13:35:56	2025-04-16 13:35:56
1287	1	DB9 Volante	2025-04-16 13:35:56	2025-04-16 13:35:56
1288	2	A5 Sportback	2025-04-16 13:35:56	2025-04-16 13:35:56
1289	3	Bentayga	2025-04-16 13:35:56	2025-04-16 13:35:56
1290	40	G	2025-04-16 13:35:56	2025-04-16 13:35:56
1291	4	4-Series Convertible	2025-04-16 13:35:56	2025-04-16 13:35:56
1292	4	M4 Convertible	2025-04-16 13:35:56	2025-04-16 13:35:56
1293	10	ATS Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1294	10	ATS V Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1295	10	CT6	2025-04-16 13:35:56	2025-04-16 13:35:56
1296	66	ML 350	2025-04-16 13:35:56	2025-04-16 13:35:56
1297	10	XT5	2025-04-16 13:35:56	2025-04-16 13:35:56
1298	10	XTS V	2025-04-16 13:35:56	2025-04-16 13:35:56
1299	26	812	2025-04-16 13:35:56	2025-04-16 13:35:56
1300	26	GTC4	2025-04-16 13:35:56	2025-04-16 13:35:56
1301	26	PORTIFINO	2025-04-16 13:35:56	2025-04-16 13:35:56
1302	66	ML 500	2025-04-16 13:35:56	2025-04-16 13:35:56
1303	86	Talisman	2025-04-16 13:35:56	2025-04-16 13:35:56
1304	98	Scirocco r	2025-04-16 13:35:56	2025-04-16 13:35:56
1305	98	Touran	2025-04-16 13:35:56	2025-04-16 13:35:56
1306	32	Terrain	2025-04-16 13:35:56	2025-04-16 13:35:56
1307	101	V940	2025-04-16 13:35:56	2025-04-16 13:35:56
1308	77	1007	2025-04-16 13:35:56	2025-04-16 13:35:56
1309	45	110	2025-04-16 13:35:56	2025-04-16 13:35:56
1310	26	125	2025-04-16 13:35:56	2025-04-16 13:35:56
1311	27	128	2025-04-16 13:35:56	2025-04-16 13:35:56
1312	69	12C	2025-04-16 13:35:56	2025-04-16 13:35:56
1313	5	159	2025-04-16 13:35:56	2025-04-16 13:35:56
1314	95	200	2025-04-16 13:35:56	2025-04-16 13:35:56
1315	4	2er Active Tourer	2025-04-16 13:35:56	2025-04-16 13:35:56
1316	19	300	2025-04-16 13:35:56	2025-04-16 13:35:56
1317	71	3000GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1318	101	745	2025-04-16 13:35:56	2025-04-16 13:35:56
1319	101	850	2025-04-16 13:35:56	2025-04-16 13:35:56
1320	101	C30	2025-04-16 13:35:56	2025-04-16 13:35:56
1321	101	C70	2025-04-16 13:35:56	2025-04-16 13:35:56
1322	10	ATS V Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1323	99	Indigo	2025-04-16 13:35:56	2025-04-16 13:35:56
1324	98	LT	2025-04-16 13:35:56	2025-04-16 13:35:56
1325	98	Lupo	2025-04-16 13:35:56	2025-04-16 13:35:56
1326	102	MF3	2025-04-16 13:35:56	2025-04-16 13:35:56
1327	102	MF4	2025-04-16 13:35:56	2025-04-16 13:35:56
1328	102	MF5	2025-04-16 13:35:56	2025-04-16 13:35:56
1329	103	Model S	2025-04-16 13:35:56	2025-04-16 13:35:56
1330	103	Model X	2025-04-16 13:35:56	2025-04-16 13:35:56
1331	98	Multivan	2025-04-16 13:35:56	2025-04-16 13:35:56
1332	104	Oting	2025-04-16 13:35:56	2025-04-16 13:35:56
1333	98	Passat Variant	2025-04-16 13:35:56	2025-04-16 13:35:56
1334	98	Phaeton	2025-04-16 13:35:56	2025-04-16 13:35:56
1335	98	Polo	2025-04-16 13:35:56	2025-04-16 13:35:56
1336	98	Rabbit	2025-04-16 13:35:56	2025-04-16 13:35:56
1337	104	Rich	2025-04-16 13:35:56	2025-04-16 13:35:56
1338	101	S40	2025-04-16 13:35:56	2025-04-16 13:35:56
1339	101	S60	2025-04-16 13:35:56	2025-04-16 13:35:56
1340	101	S70	2025-04-16 13:35:56	2025-04-16 13:35:56
1341	101	S80	2025-04-16 13:35:56	2025-04-16 13:35:56
1342	98	Santana	2025-04-16 13:35:56	2025-04-16 13:35:56
1343	98	Sharan	2025-04-16 13:35:56	2025-04-16 13:35:56
1344	31	Shelby GT500	2025-04-16 13:35:56	2025-04-16 13:35:56
1345	98	SpaceFox	2025-04-16 13:35:56	2025-04-16 13:35:56
1346	32	Terrain	2025-04-16 13:35:56	2025-04-16 13:35:56
1347	98	Transporter	2025-04-16 13:35:56	2025-04-16 13:35:56
1348	101	V40	2025-04-16 13:35:56	2025-04-16 13:35:56
1349	101	V 40 (2012)	2025-04-16 13:35:56	2025-04-16 13:35:56
1350	101	V 40 Cross Country	2025-04-16 13:35:56	2025-04-16 13:35:56
1351	101	V50	2025-04-16 13:35:56	2025-04-16 13:35:56
1352	101	V60	2025-04-16 13:35:56	2025-04-16 13:35:56
1353	101	V 60 Cross Country	2025-04-16 13:35:56	2025-04-16 13:35:56
1354	101	V70	2025-04-16 13:35:56	2025-04-16 13:35:56
1355	98	Vento	2025-04-16 13:35:56	2025-04-16 13:35:56
1356	101	XC70	2025-04-16 13:35:56	2025-04-16 13:35:56
1357	101	XC90 (2014)	2025-04-16 13:35:56	2025-04-16 13:35:56
1358	104	Yumsun	2025-04-16 13:35:56	2025-04-16 13:35:56
1359	32	Terrain	2025-04-16 13:35:56	2025-04-16 13:35:56
1360	59	323	2025-04-16 13:35:56	2025-04-16 13:35:56
1361	77	405	2025-04-16 13:35:56	2025-04-16 13:35:56
1362	59	5	2025-04-16 13:35:56	2025-04-16 13:35:56
1363	27	500X	2025-04-16 13:35:56	2025-04-16 13:35:56
1364	68	550	2025-04-16 13:35:56	2025-04-16 13:35:56
1365	101	740	2025-04-16 13:35:56	2025-04-16 13:35:56
1366	78	911 GT2 RS	2025-04-16 13:35:56	2025-04-16 13:35:56
1367	73	Aero Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1368	31	Aerostar	2025-04-16 13:35:56	2025-04-16 13:35:56
1369	2	All Road Quattro	2025-04-16 13:35:56	2025-04-16 13:35:56
1370	39	Atos	2025-04-16 13:35:56	2025-04-16 13:35:56
1371	86	Avantime	2025-04-16 13:35:56	2025-04-16 13:35:56
1372	12	B11 Oriental Son	2025-04-16 13:35:56	2025-04-16 13:35:56
1373	44	Bongo III	2025-04-16 13:35:56	2025-04-16 13:35:56
1374	20	C8	2025-04-16 13:35:56	2025-04-16 13:35:56
1375	98	Cabriolet	2025-04-16 13:35:56	2025-04-16 13:35:56
1376	84	Cevennes	2025-04-16 13:35:56	2025-04-16 13:35:56
1377	38	Civic	2025-04-16 13:35:56	2025-04-16 13:35:56
1378	24	Delta	2025-04-16 13:35:56	2025-04-16 13:35:56
1379	71	Diamante	2025-04-16 13:35:56	2025-04-16 13:35:56
1380	55	Discovery	2025-04-16 13:35:56	2025-04-16 13:35:56
1381	22	Duster	2025-04-16 13:35:56	2025-04-16 13:35:56
1382	66	E 55 AMG	2025-04-16 13:35:56	2025-04-16 13:35:56
1383	33	Emgrand 7	2025-04-16 13:35:56	2025-04-16 13:35:56
1384	10	Fleetwood	2025-04-16 13:35:56	2025-04-16 13:35:56
1385	90	FR Series	2025-04-16 13:35:56	2025-04-16 13:35:56
1386	27	Freemont	2025-04-16 13:35:56	2025-04-16 13:35:56
1387	5	Giulietta	2025-04-16 13:35:56	2025-04-16 13:35:56
1388	58	Gransport Spyder	2025-04-16 13:35:56	2025-04-16 13:35:56
1389	31	GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1390	39	H1	2025-04-16 13:35:56	2025-04-16 13:35:56
1391	97	Highlander	2025-04-16 13:35:56	2025-04-16 13:35:56
1392	40	G	2025-04-16 13:35:56	2025-04-16 13:35:56
1393	43	Liberty	2025-04-16 13:35:56	2025-04-16 13:35:56
1394	68	MG ZT	2025-04-16 13:35:56	2025-04-16 13:35:56
1395	71	Montero	2025-04-16 13:35:56	2025-04-16 13:35:56
1396	31	Mustang Shelby GT500	2025-04-16 13:35:56	2025-04-16 13:35:56
1397	19	New Yorker	2025-04-16 13:35:56	2025-04-16 13:35:56
1398	25	Nitro	2025-04-16 13:35:56	2025-04-16 13:35:56
1399	38	Odyssey J	2025-04-16 13:35:56	2025-04-16 13:35:56
1400	91	Outback	2025-04-16 13:35:56	2025-04-16 13:35:56
1401	59	Persona	2025-04-16 13:35:56	2025-04-16 13:35:56
1402	73	Roadster	2025-04-16 13:35:56	2025-04-16 13:35:56
1403	101	S 60 Cross Country	2025-04-16 13:35:56	2025-04-16 13:35:56
1404	81	Saga	2025-04-16 13:35:56	2025-04-16 13:35:56
1405	44	Sedona	2025-04-16 13:35:56	2025-04-16 13:35:56
1406	87	Seraph	2025-04-16 13:35:56	2025-04-16 13:35:56
1407	66	SL 63 AMG	2025-04-16 13:35:56	2025-04-16 13:35:56
1408	10	SRX	2025-04-16 13:35:56	2025-04-16 13:35:56
1409	96	Swift Dzire	2025-04-16 13:35:56	2025-04-16 13:35:56
1410	11	Trail Blazer	2025-04-16 13:35:56	2025-04-16 13:35:56
1411	27	Ulysse	2025-04-16 13:35:56	2025-04-16 13:35:56
1412	1	Vanquish My 2014	2025-04-16 13:35:56	2025-04-16 13:35:56
1413	86	Vel Satis	2025-04-16 13:35:56	2025-04-16 13:35:56
1414	34	Wingle 3	2025-04-16 13:35:56	2025-04-16 13:35:56
1415	42	XJS	2025-04-16 13:35:56	2025-04-16 13:35:56
1416	64	Ypsilon	2025-04-16 13:35:56	2025-04-16 13:35:56
1417	80	Zafira Tourer	2025-04-16 13:35:56	2025-04-16 13:35:56
1418	103	Model S	2025-04-16 13:35:56	2025-04-16 13:35:56
\.


--
-- Data for Name: nationalities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.nationalities (id, name, name_ar, status, created_at, updated_at, country_code) FROM stdin;
1	Afghanistan	أفغانستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AF
2	Åland Islands	جزر أولاند	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AX
3	Albania	ألبانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AL
4	Algeria	الجزائر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	DZ
5	American Samoa	ساموا الأمريكية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AS
6	Andorra	أندورا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AD
7	Angola	أنغولا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AO
8	Anguilla	أنغويلا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AI
9	Antarctica	القارة القطبية الجنوبية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AQ
10	Antigua and Barbuda	أنتيغوا وبربودا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AG
11	Argentina	الأرجنتين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AR
12	Armenia	أرمينيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AM
13	Aruba	أروبا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AW
14	Australia	أستراليا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AU
15	Austria	النمسا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AT
16	Azerbaijan	أذربيجان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AZ
17	Bahamas	باهاماس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BS
18	Bahrain	البحرين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BH
19	Bangladesh	بنغلاديش	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BD
20	Barbados	بربادوس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BB
21	Belarus	بيلاروسيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BY
22	Belgium	بلجيكا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BE
23	Belize	بليز	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BZ
24	Benin	بنين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BJ
25	Bermuda	برمودا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BM
26	Bhutan	بوتان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BT
27	Bolivia	بوليفيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BO
28	Bosnia and Herzegovina	البوسنة والهرسك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BA
29	Botswana	بوتسوانا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BW
30	Bouvet Island	جزيرة بوفيه	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BV
31	Brazil	البرازيل	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BR
32	British Indian Ocean Territory	إقليم المحيط الهندي البريطاني	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IO
33	British Virgin Islands	جزر العذراء البريطانية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VG
34	Brunei	بروناي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BN
35	Bulgaria	بلغاريا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BG
36	Burkina Faso	بوركينا فاسو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BF
37	Burundi	بوروندي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BI
38	Cabo Verde	كابو فيردي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CV
39	Cambodia	كمبوديا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KH
40	Cameroon	الكاميرون	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CM
41	Canada	كندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CA
42	Caribbean Netherlands	الجزر الكاريبية الهولندية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BQ
43	Cayman Islands	جزر كايمان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KY
44	Central African Republic	جمهورية أفريقيا الوسطى	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CF
45	Chad	تشاد	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TD
46	Chile	تشيلي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CL
47	China	الصين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CN
48	Christmas Island	جزيرة الكريسماس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CX
49	Cocos (Keeling) Islands	جزر كوكوس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CC
50	Colombia	كولومبيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CO
51	Comoros	جزر القمر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KM
52	Congo Republic	جمهورية الكونغو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CG
53	Cook Islands	جزر كوك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CK
54	Costa Rica	كوستاريكا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CR
55	Croatia	كرواتيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	HR
56	Cuba	كوبا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CU
57	Curaçao	كوراساو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CW
58	Cyprus	قبرص	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CY
59	Czechia	التشيك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CZ
60	Denmark	الدنمارك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	DK
61	Djibouti	جيبوتي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	DJ
62	Dominica	دومينيكا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	DM
63	Dominican Republic	جمهورية الدومينيكان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	DO
64	DR Congo	جمهورية الكونغو الديمقراطية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CD
65	Ecuador	الاكوادور	1	2025-05-23 14:15:00	2025-05-23 14:15:00	EC
66	Egypt	مصر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	EG
67	El Salvador	السلفادور	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SV
68	Equatorial Guinea	غينيا الاستوائية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GQ
69	Eritrea	إريتريا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ER
70	Estonia	إستونيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	EE
71	Eswatini	إسواتيني	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SZ
72	Ethiopia	إثيوبيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ET
73	Falkland Islands	جزر فوكلاند	1	2025-05-23 14:15:00	2025-05-23 14:15:00	FK
74	Faroe Islands	جزر فارو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	FO
75	Fiji	فيجي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	FJ
76	Finland	فنلندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	FI
77	France	فرنسا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	FR
78	French Guiana	غويانا الفرنسية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GF
79	French Polynesia	بولينزيا الفرنسية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PF
80	French Southern Territories	أراض فرنسية جنوبية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TF
81	Gabon	الجابون	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GA
82	Gambia	غامبيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GM
83	Georgia	‫جورجيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GE
84	Germany	ألمانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	DE
85	Ghana	غانا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GH
86	Gibraltar	جبل طارق	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GI
87	Greece	اليونان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GR
88	Greenland	جرينلاند	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GL
89	Grenada	غرينادا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GD
90	Guadeloupe	غوادلوب	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GP
91	Guam	غوام	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GU
92	Guatemala	غواتيمالا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GT
93	Guernsey	غيرنزي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GG
94	Guinea	غينيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GN
95	Guinea-Bissau	غينيا بيساو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GW
96	Guyana	غيانا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GY
97	Haiti	هايتي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	HT
98	Heard Island and McDonald Islands	جزيرة هيرد وجزر ماكدونالد	1	2025-05-23 14:15:00	2025-05-23 14:15:00	HM
99	Honduras	هندوراس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	HN
100	Hong Kong	هونج كونج	1	2025-05-23 14:15:00	2025-05-23 14:15:00	HK
101	Hungary	هنجاريا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	HU
102	Iceland	آيسلندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IS
103	India	الهند	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IN
104	Indonesia	أندونيسيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ID
105	Iran	إيران	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IR
106	Iraq	العراق	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IQ
107	Ireland	أيرلندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IE
108	Isle of Man	جزيرة مان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IM
109	Italy	إيطاليا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	IT
110	Ivory Coast	ساحل العاج	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CI
111	Jamaica	جامايكا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	JM
112	Japan	اليابان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	JP
113	Jersey	جيرسي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	JE
114	Jordan	الأردن	1	2025-05-23 14:15:00	2025-05-23 14:15:00	JO
115	Kazakhstan	كازاخستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KZ
116	Kenya	كينيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KE
117	Kiribati	كيريباتي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KI
118	Kosovo	كوسوفو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	XK
119	Kuwait	الكويت	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KW
120	Kyrgyzstan	قيرغيزستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KG
121	Laos	لاوس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LA
122	Latvia	لاتفيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LV
123	Lebanon	لبنان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LB
124	Lesotho	ليسوتو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LS
125	Liberia	ليبيريا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LR
126	Libya	ليبيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LY
127	Liechtenstein	ليختنشتاين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LI
128	Lithuania	ليتوانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LT
129	Luxembourg	لوكسمبورغ	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LU
130	Macao	ماكاو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MO
131	Madagascar	مدغشقر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MG
132	Malawi	مالاوي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MW
133	Malaysia	ماليزيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MY
134	Maldives	المالديف	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MV
135	Mali	مالي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ML
136	Malta	مالطا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MT
137	Marshall Islands	جزر مارشال	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MH
138	Martinique	مارتينيك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MQ
139	Mauritania	موريتانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MR
140	Mauritius	موريشيوس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MU
141	Mayotte	مايوت	1	2025-05-23 14:15:00	2025-05-23 14:15:00	YT
142	Mexico	المكسيك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MX
143	Micronesia	ولايات ميكرونيسيا المتحدة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	FM
144	Moldova	مولدوفا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MD
145	Monaco	موناكو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MC
146	Mongolia	منغوليا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MN
147	Montenegro	مونتينيغرو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ME
148	Montserrat	مونتسرات	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MS
149	Morocco	المغرب	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MA
150	Mozambique	موزمبيق	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MZ
151	Myanmar	ميانمار	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MM
152	Namibia	ناميبيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NA
153	Nauru	ناورو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NR
154	Nepal	نيبال	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NP
155	Netherlands	هولندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NL
156	Netherlands Antilles	جزر الأنتيل الهولندية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AN
157	New Caledonia	كاليدونيا الجديدة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NC
158	New Zealand	نيوزيلندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NZ
159	Nicaragua	نيكاراغوا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NI
160	Niger	النيجر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NE
161	Nigeria	نيجيريا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NG
162	Niue	نييوي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NU
163	Norfolk Island	جزيرة نورفولك	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NF
164	North Korea	كوريا الشمالية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KP
165	North Macedonia	مقدونيا الشمالية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MK
166	Northern Mariana Islands	جزر ماريانا الشمالية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MP
167	Norway	النرويج	1	2025-05-23 14:15:00	2025-05-23 14:15:00	NO
168	Oman	سلطنة عمان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	OM
169	Pakistan	باكستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PK
170	Palau	بالاو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PW
171	Palestine	فلسطين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PS
172	Panama	بنما	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PA
173	Papua New Guinea	بابوا غينيا الجديدة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PG
174	Paraguay	باراغواي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PY
175	Peru	بيرو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PE
176	Philippines	الفلبين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PH
177	Pitcairn Islands	جزر بيتكيرن	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PN
178	Poland	بولندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PL
179	Portugal	البرتغال	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PT
180	Puerto Rico	بورتوريكو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PR
181	Qatar	قطر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	QA
182	Réunion	ريونيون	1	2025-05-23 14:15:00	2025-05-23 14:15:00	RE
183	Romania	رومانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	RO
184	Russia	روسيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	RU
185	Rwanda	رواندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	RW
186	Saint Barthélemy	سان بارتيلمي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BL
187	Saint Helena	سانت هيلينا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SH
188	Saint Kitts and Nevis	سانت كيتس ونيفيس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KN
189	Saint Lucia	سانت لوسيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LC
190	Saint Martin	سانت مارتن	1	2025-05-23 14:15:00	2025-05-23 14:15:00	MF
191	Saint Pierre and Miquelon	سان بيير وميكلون	1	2025-05-23 14:15:00	2025-05-23 14:15:00	PM
192	Saint Vincent and the Grenadines	سانت فينسنت والغرينادين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VC
193	Samoa	ساموا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	WS
194	San Marino	سان مارينو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SM
195	São Tomé and Príncipe	ساو تومي وبرينسيب	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ST
196	Saudi Arabia	السعودية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SA
197	Senegal	السنغال	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SN
198	Serbia	صربيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	RS
199	Seychelles	سيشل	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SC
200	Sierra Leone	سيراليون	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SL
201	Singapore	سنغافورة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SG
202	Sint Maarten	سانت مارتن	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SX
203	Slovakia	سلوفاكيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SK
204	Slovenia	سلوفينيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SI
205	Solomon Islands	جزر سليمان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SB
206	Somalia	الصومال	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SO
207	South Africa	جنوب أفريقيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ZA
208	South Georgia and South Sandwich Islands	جورجيا الجنوبية وجزر ساندويتش الجنوبية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GS
209	South Korea	كوريا الجنوبية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KR
210	South Sudan	جنوب السودان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SS
211	Spain	إسبانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ES
212	Sri Lanka	سريلانكا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	LK
213	Sudan	السودان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SD
214	Suriname	سورينام	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SR
215	Svalbard and Jan Mayen	سفالبارد ويان ماين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SJ
216	Sweden	السويد	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SE
217	Switzerland	سويسرا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	CH
218	Syria	سوريا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SY
219	Taiwan	تايوان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TW
220	Tajikistan	طاجيكستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TJ
221	Tanzania	تنزانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TZ
222	Thailand	تايلاند	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TH
223	Timor-Leste	تيمور الشرقية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TL
224	Togo	توجو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TG
225	Tokelau	توكيلاو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TK
226	Tonga	تونغا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TO
227	Trinidad and Tobago	ترينيداد وتوباغو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TT
228	Tunisia	تونس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TN
229	Turkey	تركيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TR
230	Turkmenistan	تركمانستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TM
231	Turks and Caicos Islands	جزر توركس وكايكوس	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TC
232	Tuvalu	توفالو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	TV
233	U.S. Minor Outlying Islands	جزر الولايات المتحدة الصغيرة النائية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	UM
234	U.S. Virgin Islands	جزر العذراء الأمريكية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VI
235	Uganda	أوغندا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	UG
236	Ukraine	أوكرانيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	UA
237	United Arab Emirates	الإمارات العربية المتحدة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AE
238	United Kingdom	المملكة المتحدة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	GB
239	United States of America	الولايات المتحدة الأمريكية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	US
240	Uruguay	أوروغواي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	UY
241	Uzbekistan	أوزبكستان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	UZ
242	Vanuatu	فانواتو	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VU
243	Vatican City	مدينة الفاتيكان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VA
244	Venezuela	فنزويلا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VE
245	Vietnam	فيتنام	1	2025-05-23 14:15:00	2025-05-23 14:15:00	VN
246	Wallis and Futuna	واليس وفوتونا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	WF
247	Western Sahara	الصحراء الغربية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	EH
248	Yemen	اليمن	1	2025-05-23 14:15:00	2025-05-23 14:15:00	YE
249	Zambia	زامبيا	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ZM
250	Zimbabwe	زيمبابوي	1	2025-05-23 14:15:00	2025-05-23 14:15:00	ZW
\.


--
-- Data for Name: notification_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notification_settings (id, user_id, slug, value, created_at, updated_at) FROM stdin;
1	50	all	f	2025-05-22 07:12:37	2025-05-22 07:12:47
2	50	requested	f	2025-05-22 07:12:55	2025-05-22 07:12:55
74	244	all	t	2025-06-10 09:19:28	2025-06-10 09:19:28
75	244	request	t	2025-06-10 09:19:28	2025-06-10 09:19:28
76	244	promotion	t	2025-06-10 09:19:28	2025-06-10 09:19:28
77	244	message	t	2025-06-10 09:19:28	2025-06-10 09:19:28
78	244	alert	t	2025-06-10 09:19:28	2025-06-10 09:19:28
90	247	request	t	2025-06-23 21:05:53	2025-06-27 14:23:40
91	247	promotion	t	2025-06-23 21:05:53	2025-06-27 14:23:40
92	247	message	t	2025-06-23 21:05:53	2025-06-27 14:23:40
93	247	alert	t	2025-06-23 21:05:53	2025-06-27 14:23:40
94	248	all	t	2025-06-27 14:51:05	2025-06-27 14:51:05
13	215	all	t	2025-06-05 09:38:14	2025-06-10 13:16:20
14	215	request	t	2025-06-05 09:38:14	2025-06-10 13:16:20
15	215	promotion	t	2025-06-05 09:38:14	2025-06-10 13:16:20
16	215	message	t	2025-06-05 09:38:14	2025-06-10 13:16:20
17	215	alert	t	2025-06-05 09:38:14	2025-06-10 13:16:20
8	233	all	t	2025-06-05 09:25:05	2025-06-06 08:24:32
9	233	request	t	2025-06-05 09:25:05	2025-06-06 08:24:32
10	233	promotion	t	2025-06-05 09:25:05	2025-06-06 08:24:32
11	233	message	t	2025-06-05 09:25:05	2025-06-06 08:24:33
12	233	alert	t	2025-06-05 09:25:05	2025-06-06 08:24:33
54	240	all	t	2025-06-06 11:35:23	2025-06-06 11:35:23
95	248	request	t	2025-06-27 14:51:05	2025-06-27 14:51:05
96	248	promotion	t	2025-06-27 14:51:05	2025-06-27 14:51:05
97	248	message	t	2025-06-27 14:51:05	2025-06-27 14:51:05
99	195	all	t	2025-06-28 08:10:29	2025-06-28 08:10:29
100	195	request	t	2025-06-28 08:10:29	2025-06-28 08:10:29
19	236	all	t	2025-06-05 10:21:01	2025-06-05 10:21:01
20	236	request	t	2025-06-05 10:21:01	2025-06-05 10:21:01
21	236	promotion	t	2025-06-05 10:21:01	2025-06-05 10:21:01
22	236	message	t	2025-06-05 10:21:01	2025-06-05 10:21:01
23	236	alert	t	2025-06-05 10:21:01	2025-06-05 10:21:01
24	235	all	t	2025-06-05 10:30:24	2025-06-05 10:30:24
25	235	request	t	2025-06-05 10:30:24	2025-06-05 10:30:24
26	235	promotion	t	2025-06-05 10:30:24	2025-06-05 10:30:24
27	235	message	t	2025-06-05 10:30:24	2025-06-05 10:30:24
28	235	alert	t	2025-06-05 10:30:24	2025-06-05 10:30:24
29	192	all	t	2025-06-05 11:52:32	2025-06-05 11:52:32
30	192	request	t	2025-06-05 11:52:32	2025-06-05 11:52:32
31	192	promotion	t	2025-06-05 11:52:32	2025-06-05 11:52:32
32	192	message	t	2025-06-05 11:52:32	2025-06-05 11:52:32
33	192	alert	t	2025-06-05 11:52:32	2025-06-05 11:52:32
34	237	all	t	2025-06-05 12:01:21	2025-06-05 12:01:21
35	237	request	t	2025-06-05 12:01:21	2025-06-05 12:01:21
3	227	all	f	2025-06-04 17:35:13	2025-06-05 06:36:12
4	227	request	f	2025-06-05 06:27:01	2025-06-05 06:36:12
5	227	promotion	t	2025-06-05 06:27:01	2025-06-05 06:36:12
6	227	message	t	2025-06-05 06:27:01	2025-06-05 06:36:12
7	227	alert	t	2025-06-05 06:27:01	2025-06-05 06:36:12
36	237	promotion	t	2025-06-05 12:01:21	2025-06-05 12:01:21
37	237	message	t	2025-06-05 12:01:21	2025-06-05 12:01:21
38	237	alert	t	2025-06-05 12:01:21	2025-06-05 12:01:21
39	238	all	t	2025-06-05 12:56:26	2025-06-05 12:56:26
40	238	request	t	2025-06-05 12:56:26	2025-06-05 12:56:26
41	238	promotion	t	2025-06-05 12:56:26	2025-06-05 12:56:26
42	238	message	t	2025-06-05 12:56:26	2025-06-05 12:56:26
43	238	alert	t	2025-06-05 12:56:26	2025-06-05 12:56:26
55	240	request	t	2025-06-06 11:35:23	2025-06-06 11:35:23
44	239	all	t	2025-06-06 03:32:30	2025-06-06 12:56:57
45	239	request	t	2025-06-06 03:32:30	2025-06-06 12:56:57
46	239	promotion	t	2025-06-06 03:32:30	2025-06-06 12:56:57
47	239	message	t	2025-06-06 03:32:30	2025-06-06 12:56:57
56	240	promotion	t	2025-06-06 11:35:23	2025-06-06 11:35:23
50	211	request	t	2025-06-06 06:11:29	2025-06-29 09:13:25
51	211	promotion	t	2025-06-06 06:11:29	2025-06-29 09:13:25
52	211	message	t	2025-06-06 06:11:29	2025-06-29 09:13:25
53	211	alert	t	2025-06-06 06:11:29	2025-06-29 09:13:25
109	250	all	t	2025-07-09 07:16:57	2025-07-09 07:16:57
57	240	message	t	2025-06-06 11:35:23	2025-06-06 11:35:23
58	240	alert	t	2025-06-06 11:35:23	2025-06-06 11:35:23
48	239	alert	f	2025-06-06 03:32:30	2025-06-06 12:56:57
59	241	all	t	2025-06-06 13:57:11	2025-06-06 13:57:11
60	241	request	t	2025-06-06 13:57:11	2025-06-06 13:57:11
61	241	promotion	t	2025-06-06 13:57:11	2025-06-06 13:57:11
62	241	message	t	2025-06-06 13:57:11	2025-06-06 13:57:11
63	241	alert	t	2025-06-06 13:57:11	2025-06-06 13:57:11
64	242	all	t	2025-06-07 12:04:36	2025-06-07 12:04:36
65	242	request	t	2025-06-07 12:04:36	2025-06-07 12:04:36
66	242	promotion	t	2025-06-07 12:04:36	2025-06-07 12:04:36
84	246	all	t	2025-06-11 09:55:34	2025-06-11 09:55:34
85	246	request	t	2025-06-11 09:55:34	2025-06-11 09:55:34
86	246	promotion	t	2025-06-11 09:55:34	2025-06-11 09:55:34
87	246	message	t	2025-06-11 09:55:34	2025-06-11 09:55:34
88	246	alert	t	2025-06-11 09:55:34	2025-06-11 09:55:34
67	242	message	t	2025-06-07 12:04:36	2025-06-07 12:04:36
68	242	alert	t	2025-06-07 12:04:36	2025-06-07 12:04:36
69	243	all	t	2025-06-09 09:13:24	2025-06-09 09:13:24
70	243	request	t	2025-06-09 09:13:24	2025-06-09 09:13:24
71	243	promotion	t	2025-06-09 09:13:24	2025-06-09 09:13:24
72	243	message	t	2025-06-09 09:13:24	2025-06-09 09:13:24
73	243	alert	t	2025-06-09 09:13:24	2025-06-09 09:13:24
101	195	promotion	t	2025-06-28 08:10:29	2025-06-28 08:10:29
102	195	message	t	2025-06-28 08:10:29	2025-06-28 08:10:29
89	247	all	t	2025-06-23 21:05:53	2025-06-27 14:23:40
98	248	alert	t	2025-06-27 14:51:05	2025-06-27 14:51:05
103	195	alert	t	2025-06-28 08:10:29	2025-06-28 08:10:29
104	249	all	t	2025-06-28 13:01:59	2025-06-28 13:01:59
105	249	request	t	2025-06-28 13:01:59	2025-06-28 13:01:59
106	249	promotion	t	2025-06-28 13:01:59	2025-06-28 13:01:59
107	249	message	t	2025-06-28 13:01:59	2025-06-28 13:01:59
108	249	alert	t	2025-06-28 13:01:59	2025-06-28 13:01:59
49	211	all	t	2025-06-06 06:11:29	2025-06-29 09:13:25
110	250	request	t	2025-07-09 07:16:57	2025-07-09 07:16:57
111	250	promotion	t	2025-07-09 07:16:57	2025-07-09 07:16:57
81	245	promotion	t	2025-06-11 09:55:14	2025-07-13 02:16:55
82	245	message	t	2025-06-11 09:55:14	2025-07-13 02:16:55
83	245	alert	t	2025-06-11 09:55:14	2025-07-13 02:16:55
80	245	request	t	2025-06-11 09:55:14	2025-07-13 02:16:55
112	250	message	t	2025-07-09 07:16:57	2025-07-09 07:16:57
113	250	alert	t	2025-07-09 07:16:57	2025-07-09 07:16:57
114	251	all	t	2025-07-09 10:44:36	2025-07-09 10:44:36
115	251	request	t	2025-07-09 10:44:36	2025-07-09 10:44:36
116	251	promotion	t	2025-07-09 10:44:36	2025-07-09 10:44:36
117	251	message	t	2025-07-09 10:44:36	2025-07-09 10:44:36
118	251	alert	t	2025-07-09 10:44:36	2025-07-09 10:44:36
119	252	all	t	2025-07-10 06:19:03	2025-07-10 06:19:03
120	252	request	t	2025-07-10 06:19:03	2025-07-10 06:19:03
121	252	promotion	t	2025-07-10 06:19:03	2025-07-10 06:19:03
122	252	message	t	2025-07-10 06:19:03	2025-07-10 06:19:03
123	252	alert	t	2025-07-10 06:19:03	2025-07-10 06:19:03
124	224	all	t	2025-07-10 12:09:08	2025-07-10 12:09:08
125	224	request	t	2025-07-10 12:09:08	2025-07-10 12:09:08
126	224	promotion	t	2025-07-10 12:09:08	2025-07-10 12:09:08
127	224	message	t	2025-07-10 12:09:08	2025-07-10 12:09:08
128	224	alert	t	2025-07-10 12:09:08	2025-07-10 12:09:08
184	216	all	t	2025-07-12 06:43:16	2025-07-12 06:43:16
185	216	request	t	2025-07-12 06:43:16	2025-07-12 06:43:16
186	216	promotion	t	2025-07-12 06:43:16	2025-07-12 06:43:16
187	216	message	t	2025-07-12 06:43:16	2025-07-12 06:43:16
188	216	alert	t	2025-07-12 06:43:16	2025-07-12 06:43:16
129	253	all	t	2025-07-10 14:34:32	2025-07-10 16:37:17
130	253	request	t	2025-07-10 14:34:32	2025-07-10 16:37:17
131	253	promotion	t	2025-07-10 14:34:32	2025-07-10 16:37:17
132	253	message	t	2025-07-10 14:34:32	2025-07-10 16:37:17
133	253	alert	t	2025-07-10 14:34:32	2025-07-10 16:37:17
134	254	all	t	2025-07-11 11:23:07	2025-07-11 11:23:07
135	254	request	t	2025-07-11 11:23:07	2025-07-11 11:23:07
136	254	promotion	t	2025-07-11 11:23:07	2025-07-11 11:23:07
137	254	message	t	2025-07-11 11:23:07	2025-07-11 11:23:07
138	254	alert	t	2025-07-11 11:23:07	2025-07-11 11:23:07
144	256	all	t	2025-07-11 12:03:07	2025-07-11 12:03:07
145	256	request	t	2025-07-11 12:03:07	2025-07-11 12:03:07
146	256	promotion	t	2025-07-11 12:03:07	2025-07-11 12:03:07
147	256	message	t	2025-07-11 12:03:07	2025-07-11 12:03:07
148	256	alert	t	2025-07-11 12:03:07	2025-07-11 12:03:07
149	257	all	t	2025-07-11 13:37:02	2025-07-11 13:37:02
150	257	request	t	2025-07-11 13:37:02	2025-07-11 13:37:02
151	257	promotion	t	2025-07-11 13:37:02	2025-07-11 13:37:02
152	257	message	t	2025-07-11 13:37:02	2025-07-11 13:37:02
153	257	alert	t	2025-07-11 13:37:02	2025-07-11 13:37:02
79	245	all	t	2025-06-11 09:55:14	2025-07-13 02:16:55
204	266	all	t	2025-07-13 07:26:29	2025-07-13 07:26:29
205	266	request	t	2025-07-13 07:26:29	2025-07-13 07:26:29
206	266	promotion	t	2025-07-13 07:26:29	2025-07-13 07:26:29
154	258	all	t	2025-07-11 14:43:04	2025-07-12 07:30:00
155	258	request	t	2025-07-11 14:43:04	2025-07-12 07:30:00
156	258	promotion	t	2025-07-11 14:43:04	2025-07-12 07:30:00
157	258	message	t	2025-07-11 14:43:04	2025-07-12 07:30:00
158	258	alert	t	2025-07-11 14:43:04	2025-07-12 07:30:00
189	263	all	t	2025-07-12 08:26:56	2025-07-12 08:26:56
190	263	request	t	2025-07-12 08:26:56	2025-07-12 08:26:56
191	263	promotion	t	2025-07-12 08:26:56	2025-07-12 08:26:56
192	263	message	t	2025-07-12 08:26:57	2025-07-12 08:26:57
193	263	alert	t	2025-07-12 08:26:57	2025-07-12 08:26:57
139	255	all	t	2025-07-11 11:44:15	2025-07-11 14:36:22
140	255	request	t	2025-07-11 11:44:15	2025-07-11 14:36:22
141	255	promotion	t	2025-07-11 11:44:15	2025-07-11 14:36:22
142	255	message	t	2025-07-11 11:44:15	2025-07-11 14:36:22
143	255	alert	t	2025-07-11 11:44:15	2025-07-11 14:36:22
159	259	all	t	2025-07-11 15:06:09	2025-07-11 15:06:09
160	259	request	t	2025-07-11 15:06:09	2025-07-11 15:06:09
161	259	promotion	t	2025-07-11 15:06:09	2025-07-11 15:06:09
162	259	message	t	2025-07-11 15:06:09	2025-07-11 15:06:09
163	259	alert	t	2025-07-11 15:06:09	2025-07-11 15:06:09
164	260	all	t	2025-07-11 15:09:28	2025-07-11 15:09:28
165	260	request	t	2025-07-11 15:09:28	2025-07-11 15:09:28
166	260	promotion	t	2025-07-11 15:09:28	2025-07-11 15:09:28
167	260	message	t	2025-07-11 15:09:28	2025-07-11 15:09:28
168	260	alert	t	2025-07-11 15:09:28	2025-07-11 15:09:28
169	260	all	t	2025-07-11 15:09:28	2025-07-11 15:09:28
170	260	request	t	2025-07-11 15:09:28	2025-07-11 15:09:28
171	260	promotion	t	2025-07-11 15:09:28	2025-07-11 15:09:28
172	260	message	t	2025-07-11 15:09:28	2025-07-11 15:09:28
173	260	alert	t	2025-07-11 15:09:28	2025-07-11 15:09:28
174	261	all	t	2025-07-11 15:11:30	2025-07-11 15:11:30
175	261	request	t	2025-07-11 15:11:30	2025-07-11 15:11:30
176	261	promotion	t	2025-07-11 15:11:30	2025-07-11 15:11:30
177	261	message	t	2025-07-11 15:11:30	2025-07-11 15:11:30
178	261	alert	t	2025-07-11 15:11:30	2025-07-11 15:11:30
179	262	all	t	2025-07-12 05:30:57	2025-07-12 05:30:57
180	262	request	t	2025-07-12 05:30:57	2025-07-12 05:30:57
181	262	promotion	t	2025-07-12 05:30:57	2025-07-12 05:30:57
182	262	message	t	2025-07-12 05:30:57	2025-07-12 05:30:57
183	262	alert	t	2025-07-12 05:30:57	2025-07-12 05:30:57
194	264	all	t	2025-07-12 08:54:57	2025-07-12 08:54:57
195	264	request	t	2025-07-12 08:54:57	2025-07-12 08:54:57
196	264	promotion	t	2025-07-12 08:54:57	2025-07-12 08:54:57
197	264	message	t	2025-07-12 08:54:57	2025-07-12 08:54:57
198	264	alert	t	2025-07-12 08:54:57	2025-07-12 08:54:57
199	265	all	t	2025-07-12 08:55:36	2025-07-12 08:55:36
200	265	request	t	2025-07-12 08:55:36	2025-07-12 08:55:36
201	265	promotion	t	2025-07-12 08:55:36	2025-07-12 08:55:36
202	265	message	t	2025-07-12 08:55:36	2025-07-12 08:55:36
203	265	alert	t	2025-07-12 08:55:36	2025-07-12 08:55:36
207	266	message	t	2025-07-13 07:26:29	2025-07-13 07:26:29
208	266	alert	t	2025-07-13 07:26:29	2025-07-13 07:26:29
209	267	all	t	2025-07-13 07:55:42	2025-07-13 07:55:42
210	267	request	t	2025-07-13 07:55:42	2025-07-13 07:55:42
211	267	promotion	t	2025-07-13 07:55:42	2025-07-13 07:55:42
212	267	message	t	2025-07-13 07:55:42	2025-07-13 07:55:42
213	267	alert	t	2025-07-13 07:55:42	2025-07-13 07:55:42
214	268	all	t	2025-07-13 11:10:11	2025-07-13 11:10:11
215	268	request	t	2025-07-13 11:10:11	2025-07-13 11:10:11
216	268	promotion	t	2025-07-13 11:10:11	2025-07-13 11:10:11
217	268	message	t	2025-07-13 11:10:11	2025-07-13 11:10:11
218	268	alert	t	2025-07-13 11:10:11	2025-07-13 11:10:11
219	269	all	t	2025-07-13 13:59:36	2025-07-13 13:59:36
220	269	request	t	2025-07-13 13:59:36	2025-07-13 13:59:36
221	269	promotion	t	2025-07-13 13:59:36	2025-07-13 13:59:36
222	269	message	t	2025-07-13 13:59:36	2025-07-13 13:59:36
223	269	alert	t	2025-07-13 13:59:37	2025-07-13 13:59:37
224	270	all	t	2025-07-13 15:22:32	2025-07-13 15:22:32
225	270	request	t	2025-07-13 15:22:32	2025-07-13 15:22:32
226	270	promotion	t	2025-07-13 15:22:32	2025-07-13 15:22:32
227	270	message	t	2025-07-13 15:22:32	2025-07-13 15:22:32
228	270	alert	t	2025-07-13 15:22:32	2025-07-13 15:22:32
229	271	all	t	2025-07-13 20:16:01	2025-07-13 20:16:01
230	271	request	t	2025-07-13 20:16:01	2025-07-13 20:16:01
231	271	promotion	t	2025-07-13 20:16:01	2025-07-13 20:16:01
232	271	message	t	2025-07-13 20:16:01	2025-07-13 20:16:01
233	271	alert	t	2025-07-13 20:16:01	2025-07-13 20:16:01
234	272	all	t	2025-07-13 21:01:37	2025-07-13 21:01:37
235	272	request	t	2025-07-13 21:01:37	2025-07-13 21:01:37
236	272	promotion	t	2025-07-13 21:01:37	2025-07-13 21:01:37
237	272	message	t	2025-07-13 21:01:37	2025-07-13 21:01:37
238	272	alert	t	2025-07-13 21:01:37	2025-07-13 21:01:37
\.


--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notifications (id, title, content, user_id, generated_by, generated_to, is_read, image, status, created_at, updated_at, main_notification_id) FROM stdin;
1	hi	hkugkutkutkutkutku	233	1	\N	no	68416e05e0805_1749118469.png	1	2025-06-05 10:14:30	2025-06-05 10:14:30	\N
2	hello	Hi	185	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:15	2025-06-05 11:06:15	\N
3	hello	Hi	214	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:15	2025-06-05 11:06:15	\N
4	hello	Hi	224	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:16	2025-06-05 11:06:16	\N
5	hello	Hi	234	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:16	2025-06-05 11:06:16	\N
6	hello	Hi	180	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:17	2025-06-05 11:06:17	\N
7	hello	Hi	51	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:17	2025-06-05 11:06:17	\N
8	hello	Hi	197	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:17	2025-06-05 11:06:17	\N
9	hello	Hi	186	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N
10	hello	Hi	193	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N
11	hello	Hi	50	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N
12	hello	Hi	174	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N
13	hello	Hi	204	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N
14	hello	Hi	53	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N
15	hello	Hi	154	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N
16	hello	Hi	52	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N
17	hello	Hi	49	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N
18	hello	Hi	164	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N
19	hello	Hi	155	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N
20	hello	Hi	198	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N
21	hello	Hi	187	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N
22	hello	Hi	181	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N
23	hello	Hi	165	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N
24	hello	Hi	194	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N
25	hello	Hi	185	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N
26	hello	Hi	175	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:22	2025-06-05 11:06:22	\N
27	hello	Hi	214	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:22	2025-06-05 11:06:22	\N
28	hello	Hi	215	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:22	2025-06-05 11:06:22	\N
29	hello	Hi	224	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N
30	hello	Hi	225	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N
31	hello	Hi	234	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N
32	hello	Hi	205	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N
33	hello	Hi	180	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N
34	hello	Hi	51	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
35	hello	Hi	235	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
36	hello	Hi	197	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
37	hello	Hi	206	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
38	hello	Hi	186	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
39	hello	Hi	156	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
40	hello	Hi	193	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
41	hello	Hi	188	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N
42	hello	Hi	166	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N
43	hello	Hi	50	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N
44	hello	Hi	174	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N
45	hello	Hi	176	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N
46	hello	Hi	204	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N
47	hello	Hi	226	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N
48	hello	Hi	53	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
49	hello	Hi	154	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
50	hello	Hi	52	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
51	hello	Hi	195	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
52	hello	Hi	49	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
53	hello	Hi	164	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
54	hello	Hi	155	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
55	hello	Hi	199	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
56	hello	Hi	198	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N
57	hello	Hi	187	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N
58	hello	Hi	236	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N
59	hello	Hi	181	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N
60	hello	Hi	216	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N
61	hello	Hi	165	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N
62	hello	Hi	157	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N
63	hello	Hi	183	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N
65	hello	Hi	177	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N
68	hello	Hi	196	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N
70	hello	Hi	189	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N
72	hello	Hi	207	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N
73	hello	Hi	217	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N
75	hello	Hi	227	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N
79	hello	Hi	208	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
81	hello	Hi	158	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
83	hello	Hi	190	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N
85	hello	Hi	168	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N
87	hello	Hi	184	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N
88	hello	Hi	178	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N
90	hello	Hi	228	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N
93	hello	Hi	218	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N
96	hello	Hi	179	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:35	2025-06-05 11:06:35	\N
98	hello	Hi	229	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:35	2025-06-05 11:06:35	\N
100	hello	Hi	169	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N
102	hello	Hi	219	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N
105	hello	Hi	209	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N
107	hello	Hi	191	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N
109	hello	Hi	202	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N
112	hello	Hi	170	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N
114	hello	Hi	230	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N
116	hello	Hi	203	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N
118	hello	Hi	210	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:40	2025-06-05 11:06:40	\N
120	hello	Hi	220	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:40	2025-06-05 11:06:40	\N
122	hello	Hi	192	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N
124	hello	Hi	171	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N
126	hello	Hi	161	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:42	2025-06-05 11:06:42	\N
127	hello	Hi	211	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:42	2025-06-05 11:06:42	\N
129	hello	Hi	231	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N
131	hello	Hi	162	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N
133	hello	Hi	172	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N
135	hello	Hi	222	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N
137	hello	Hi	212	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N
139	hello	Hi	232	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:45	2025-06-05 11:06:45	\N
141	hello	Hi	213	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N
144	hello	Hi	163	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N
145	hello	Hi	223	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N
147	hello	Hi	173	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N
150	hello	Hi	233	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N
64	hello	Hi	194	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N
66	hello	Hi	175	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N
67	hello	Hi	215	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N
69	hello	Hi	225	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N
71	hello	Hi	205	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N
74	hello	Hi	235	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N
76	hello	Hi	206	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
77	hello	Hi	156	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
78	hello	Hi	188	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
80	hello	Hi	166	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
82	hello	Hi	176	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N
84	hello	Hi	226	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N
86	hello	Hi	195	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N
89	hello	Hi	199	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N
91	hello	Hi	236	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N
92	hello	Hi	216	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N
94	hello	Hi	157	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N
95	hello	Hi	183	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N
97	hello	Hi	177	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:35	2025-06-05 11:06:35	\N
99	hello	Hi	196	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N
101	hello	Hi	189	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N
103	hello	Hi	207	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N
104	hello	Hi	217	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N
106	hello	Hi	227	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N
108	hello	Hi	208	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N
110	hello	Hi	158	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N
111	hello	Hi	190	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N
113	hello	Hi	168	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N
115	hello	Hi	184	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N
117	hello	Hi	178	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N
119	hello	Hi	228	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:40	2025-06-05 11:06:40	\N
121	hello	Hi	218	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N
123	hello	Hi	179	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N
125	hello	Hi	229	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N
128	hello	Hi	169	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:42	2025-06-05 11:06:42	\N
130	hello	Hi	219	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N
132	hello	Hi	209	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N
134	hello	Hi	191	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N
136	hello	Hi	202	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N
138	hello	Hi	170	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:45	2025-06-05 11:06:45	\N
140	hello	Hi	230	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:45	2025-06-05 11:06:45	\N
142	hello	Hi	203	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N
143	hello	Hi	210	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N
146	hello	Hi	220	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N
148	hello	Hi	192	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N
149	hello	Hi	171	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N
151	hello	Hi	161	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N
152	hello	Hi	211	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N
153	hello	Hi	231	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:49	2025-06-05 11:06:49	\N
154	hello	Hi	162	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:50	2025-06-05 11:06:50	\N
155	hello	Hi	172	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:50	2025-06-05 11:06:50	\N
156	hello	Hi	222	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:50	2025-06-05 11:06:50	\N
157	hello	Hi	212	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:51	2025-06-05 11:06:51	\N
158	hello	Hi	232	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:51	2025-06-05 11:06:51	\N
159	hello	Hi	213	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:52	2025-06-05 11:06:52	\N
160	hello	Hi	163	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:53	2025-06-05 11:06:53	\N
161	hello	Hi	223	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:53	2025-06-05 11:06:53	\N
162	hello	Hi	173	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:53	2025-06-05 11:06:53	\N
163	hello	Hi	233	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:54	2025-06-05 11:06:54	\N
266	promooooo	pronmmo aail 69%off on new profile	185	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:20	2025-06-09 09:02:20	\N
267	promooooo	pronmmo aail 69%off on new profile	214	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:20	2025-06-09 09:02:20	\N
164	Unlock Exclusive Perks with Our Membership! 🎉	Unlock Exclusive Perks with Our Membership! 🎉\r\nHi Khalid,\r\nWe’re excited to let you know about our limited-time membership offer! Join now and enjoy:\r\n ✅ [Benefit 1, e.g., 20% off all purchases] ✅ [Benefit 2, e.g., free shipping on every order] ✅ [Benefit 3, e.g., early access to sales and new arrivals]\r\n\r\nFor a limited time, get [X months free/discounted rate] when you sign up!\r\n\r\n👉 [Click here] to join today and start saving!\r\nDon’t miss out—this offer ends on [date].\r\n\r\nCheers, Luqia	211	1	\N	no	68417ee6899ec_1749122790.png	1	2025-06-05 11:26:30	2025-06-05 11:26:30	\N
165	test	sdfsd	211	1	\N	no	684180f677cf6_1749123318.png	1	2025-06-05 11:35:18	2025-06-05 11:35:18	\N
166	Hamid	dsfsd	211	1	\N	no	684182ba75859_1749123770.png	1	2025-06-05 11:42:50	2025-06-05 11:42:50	\N
167	tes	defcsd	192	1	\N	no	6841868dc5ac2_1749124749.png	1	2025-06-05 11:59:09	2025-06-05 11:59:09	\N
168	sdufsdj	sdjvjsdjvsjd	192	1	\N	no	68418747e7e04_1749124935.png	1	2025-06-05 12:02:16	2025-06-05 12:02:16	\N
169	hellosdf	dsfsdfsd	192	1	\N	no	6841883864f7d_1749125176.png	1	2025-06-05 12:06:16	2025-06-05 12:06:16	\N
170	Notification test	sdfsd	192	1	\N	no	684189bd6f7bb_1749125565.png	1	2025-06-05 12:12:45	2025-06-05 12:12:45	\N
171	hi	yyykhjb bkhlkjb ihlh lhlkhlkh	239	1	\N	no	6842820952af6_1749189129.png	1	2025-06-06 05:52:09	2025-06-06 05:52:09	\N
172	hi	khulhlh	239	1	\N	no	6842829155e92_1749189265.png	1	2025-06-06 05:54:25	2025-06-06 05:54:25	\N
173	hi	iutuyotot	239	1	\N	no	6842a4cea8519_1749198030.png	1	2025-06-06 08:20:30	2025-06-06 08:20:30	\N
174	education	education education education education education	239	1	\N	no	6842a54ade7ae_1749198154.png	1	2025-06-06 08:22:35	2025-06-06 08:22:35	\N
175	jkkkkk	ljnnljnn	239	1	\N	no	6842dfd95ba36_1749213145.png	1	2025-06-06 12:32:25	2025-06-06 12:32:25	\N
176	jmbjbglhgljgh	nljnlj	239	1	\N	no	6842e048e75f5_1749213256.png	1	2025-06-06 12:34:17	2025-06-06 12:34:17	\N
177	This is my title	This is my content	239	1	\N	no	6842e2dd6166b_1749213917.png	1	2025-06-06 12:45:17	2025-06-06 12:45:17	\N
178	This is promotion	This is text	239	1	\N	no	6842e30603ab5_1749213958.png	1	2025-06-06 12:45:58	2025-06-06 12:45:58	\N
179	What is Lorem Ipsum	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	185	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:25	2025-06-08 06:41:25	\N
180	What is Lorem Ipsum	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	214	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:25	2025-06-08 06:41:25	\N
181	What is Lorem Ipsum	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	224	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:25	2025-06-08 06:41:25	\N
182	What is Lorem Ipsum	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	234	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N
183	What is Lorem Ipsum	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	180	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N
184	What is Lorem Ipsum	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	51	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N
185	What is Lorem Ipsum	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	197	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N
186	What is Lorem Ipsum	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	186	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N
268	promooooo	pronmmo aail 69%off on new profile	224	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:20	2025-06-09 09:02:20	\N
269	promooooo	pronmmo aail 69%off on new profile	180	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
270	promooooo	pronmmo aail 69%off on new profile	51	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
187	What is Lorem Ipsum	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	193	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N
188	What is Lorem Ipsum	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	50	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
189	What is Lorem Ipsum	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	174	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
190	What is Lorem Ipsum	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	204	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
191	What is Lorem Ipsum	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	53	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
192	What is Lorem Ipsum	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	154	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
193	What is Lorem Ipsum	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	52	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
194	What is Lorem Ipsum	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	49	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
195	What is Lorem Ipsum	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	164	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
196	What is Lorem Ipsum	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	155	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
197	What is Lorem Ipsum	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	198	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
198	What is Lorem Ipsum	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	187	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N
199	What is Lorem Ipsum	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	181	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N
271	promooooo	pronmmo aail 69%off on new profile	197	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
200	What is Lorem Ipsum	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	165	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N
201	What is Lorem Ipsum	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	194	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N
202	What is Lorem Ipsum	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	175	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N
203	What is Lorem Ipsum	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	215	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N
204	What is Lorem Ipsum	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	225	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:29	2025-06-08 06:41:29	\N
205	What is Lorem Ipsum	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	205	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:29	2025-06-08 06:41:29	\N
206	What is Lorem Ipsum	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	235	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:29	2025-06-08 06:41:29	\N
207	What is Lorem Ipsum	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	206	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N
208	What is Lorem Ipsum	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	156	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N
209	What is Lorem Ipsum	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	188	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N
210	What is Lorem Ipsum	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	166	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N
211	What is Lorem Ipsum	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	176	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N
212	What is Lorem Ipsum	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	226	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N
272	promooooo	pronmmo aail 69%off on new profile	186	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
213	What is Lorem Ipsum	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	195	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N
214	What is Lorem Ipsum	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	199	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N
215	What is Lorem Ipsum	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	236	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N
216	What is Lorem Ipsum	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	216	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N
217	What is Lorem Ipsum	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	157	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N
218	What is Lorem Ipsum	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	183	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N
219	What is Lorem Ipsum	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	177	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N
220	What is Lorem Ipsum	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	196	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N
221	What is Lorem Ipsum	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	189	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N
222	What is Lorem Ipsum	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	237	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N
223	What is Lorem Ipsum	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	207	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N
224	What is Lorem Ipsum	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	217	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N
225	What is Lorem Ipsum	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	227	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N
273	promooooo	pronmmo aail 69%off on new profile	193	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
226	What is Lorem Ipsum	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	208	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
227	What is Lorem Ipsum	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	158	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
228	What is Lorem Ipsum	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	190	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
229	What is Lorem Ipsum	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	168	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
230	What is Lorem Ipsum	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	184	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
231	What is Lorem Ipsum	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	178	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
232	What is Lorem Ipsum	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	228	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N
233	What is Lorem Ipsum	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	218	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:35	2025-06-08 06:41:35	\N
234	What is Lorem Ipsum	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	238	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:35	2025-06-08 06:41:35	\N
235	What is Lorem Ipsum	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	179	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:35	2025-06-08 06:41:35	\N
236	What is Lorem Ipsum	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	229	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N
237	What is Lorem Ipsum	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	169	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N
238	What is Lorem Ipsum	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	219	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N
274	promooooo	pronmmo aail 69%off on new profile	50	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
239	What is Lorem Ipsum	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	209	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N
240	What is Lorem Ipsum	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	191	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:37	2025-06-08 06:41:37	\N
241	What is Lorem Ipsum	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	202	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:37	2025-06-08 06:41:37	\N
242	What is Lorem Ipsum	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	239	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:37	2025-06-08 06:41:37	\N
243	What is Lorem Ipsum	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	170	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N
244	What is Lorem Ipsum	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	230	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N
245	What is Lorem Ipsum	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	192	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N
246	What is Lorem Ipsum	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	203	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N
247	What is Lorem Ipsum	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	220	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:39	2025-06-08 06:41:39	\N
248	What is Lorem Ipsum	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	210	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:39	2025-06-08 06:41:39	\N
249	What is Lorem Ipsum	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	240	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:39	2025-06-08 06:41:39	\N
250	What is Lorem Ipsum	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	171	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N
251	What is Lorem Ipsum	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	161	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N
275	promooooo	pronmmo aail 69%off on new profile	174	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N
252	What is Lorem Ipsum	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	241	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N
253	What is Lorem Ipsum	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	211	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N
254	What is Lorem Ipsum	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	231	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N
255	What is Lorem Ipsum	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	162	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N
256	What is Lorem Ipsum	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	212	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N
257	What is Lorem Ipsum	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	172	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N
258	What is Lorem Ipsum	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	222	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N
259	What is Lorem Ipsum	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	242	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N
260	What is Lorem Ipsum	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	213	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N
261	What is Lorem Ipsum	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	163	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N
262	What is Lorem Ipsum	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	223	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N
263	What is Lorem Ipsum	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	173	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N
264	What is Lorem Ipsum	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	233	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:43	2025-06-08 06:41:43	\N
265	promooooo	pronmmo aail 69%off on new profile	234	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:19	2025-06-09 09:02:19	\N
276	promooooo	pronmmo aail 69%off on new profile	204	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
277	promooooo	pronmmo aail 69%off on new profile	53	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
278	promooooo	pronmmo aail 69%off on new profile	154	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
279	promooooo	pronmmo aail 69%off on new profile	52	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
280	promooooo	pronmmo aail 69%off on new profile	49	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
281	promooooo	pronmmo aail 69%off on new profile	164	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
282	promooooo	pronmmo aail 69%off on new profile	155	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
283	promooooo	pronmmo aail 69%off on new profile	198	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
284	promooooo	pronmmo aail 69%off on new profile	187	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
285	promooooo	pronmmo aail 69%off on new profile	181	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N
286	promooooo	pronmmo aail 69%off on new profile	165	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N
287	promooooo	pronmmo aail 69%off on new profile	194	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N
288	promooooo	pronmmo aail 69%off on new profile	175	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N
289	promooooo	pronmmo aail 69%off on new profile	215	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N
290	promooooo	pronmmo aail 69%off on new profile	225	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:24	2025-06-09 09:02:24	\N
291	promooooo	pronmmo aail 69%off on new profile	205	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:24	2025-06-09 09:02:24	\N
292	promooooo	pronmmo aail 69%off on new profile	235	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:24	2025-06-09 09:02:24	\N
293	promooooo	pronmmo aail 69%off on new profile	206	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N
294	promooooo	pronmmo aail 69%off on new profile	156	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N
295	promooooo	pronmmo aail 69%off on new profile	188	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N
296	promooooo	pronmmo aail 69%off on new profile	166	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N
297	promooooo	pronmmo aail 69%off on new profile	176	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N
298	promooooo	pronmmo aail 69%off on new profile	226	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N
299	promooooo	pronmmo aail 69%off on new profile	195	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N
300	promooooo	pronmmo aail 69%off on new profile	199	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N
301	promooooo	pronmmo aail 69%off on new profile	236	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N
302	promooooo	pronmmo aail 69%off on new profile	216	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N
303	promooooo	pronmmo aail 69%off on new profile	157	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
304	promooooo	pronmmo aail 69%off on new profile	183	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
305	promooooo	pronmmo aail 69%off on new profile	234	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
306	promooooo	pronmmo aail 69%off on new profile	177	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
307	promooooo	pronmmo aail 69%off on new profile	196	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
308	promooooo	pronmmo aail 69%off on new profile	185	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
309	promooooo	pronmmo aail 69%off on new profile	189	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
310	promooooo	pronmmo aail 69%off on new profile	214	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N
311	promooooo	pronmmo aail 69%off on new profile	237	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
312	promooooo	pronmmo aail 69%off on new profile	224	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
313	promooooo	pronmmo aail 69%off on new profile	180	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
314	promooooo	pronmmo aail 69%off on new profile	207	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
315	promooooo	pronmmo aail 69%off on new profile	217	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
316	promooooo	pronmmo aail 69%off on new profile	51	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
317	promooooo	pronmmo aail 69%off on new profile	197	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
318	promooooo	pronmmo aail 69%off on new profile	227	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
319	promooooo	pronmmo aail 69%off on new profile	186	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
320	promooooo	pronmmo aail 69%off on new profile	193	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
321	promooooo	pronmmo aail 69%off on new profile	208	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N
322	promooooo	pronmmo aail 69%off on new profile	50	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
323	promooooo	pronmmo aail 69%off on new profile	174	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
324	promooooo	pronmmo aail 69%off on new profile	158	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
567	Hi	Hi	203	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4
325	promooooo	pronmmo aail 69%off on new profile	190	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
327	promooooo	pronmmo aail 69%off on new profile	168	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
335	promooooo	pronmmo aail 69%off on new profile	184	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
336	promooooo	pronmmo aail 69%off on new profile	178	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
338	promooooo	pronmmo aail 69%off on new profile	228	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
340	promooooo	pronmmo aail 69%off on new profile	218	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
342	promooooo	pronmmo aail 69%off on new profile	238	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
345	promooooo	pronmmo aail 69%off on new profile	179	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
347	promooooo	pronmmo aail 69%off on new profile	229	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
349	promooooo	pronmmo aail 69%off on new profile	169	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
351	promooooo	pronmmo aail 69%off on new profile	219	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
353	promooooo	pronmmo aail 69%off on new profile	209	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
354	promooooo	pronmmo aail 69%off on new profile	191	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
358	promooooo	pronmmo aail 69%off on new profile	202	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
360	promooooo	pronmmo aail 69%off on new profile	239	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
363	promooooo	pronmmo aail 69%off on new profile	170	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
365	promooooo	pronmmo aail 69%off on new profile	230	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
367	promooooo	pronmmo aail 69%off on new profile	192	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
369	promooooo	pronmmo aail 69%off on new profile	203	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
371	promooooo	pronmmo aail 69%off on new profile	220	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
374	promooooo	pronmmo aail 69%off on new profile	210	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
375	promooooo	pronmmo aail 69%off on new profile	240	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
379	promooooo	pronmmo aail 69%off on new profile	171	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
381	promooooo	pronmmo aail 69%off on new profile	161	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
382	promooooo	pronmmo aail 69%off on new profile	241	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
385	promooooo	pronmmo aail 69%off on new profile	211	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
387	promooooo	pronmmo aail 69%off on new profile	231	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
389	promooooo	pronmmo aail 69%off on new profile	162	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
390	promooooo	pronmmo aail 69%off on new profile	212	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
393	promooooo	pronmmo aail 69%off on new profile	172	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
395	promooooo	pronmmo aail 69%off on new profile	222	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
398	promooooo	pronmmo aail 69%off on new profile	242	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
400	promooooo	pronmmo aail 69%off on new profile	213	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
402	promooooo	pronmmo aail 69%off on new profile	163	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
403	promooooo	pronmmo aail 69%off on new profile	223	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
405	promooooo	pronmmo aail 69%off on new profile	173	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
406	promooooo	pronmmo aail 69%off on new profile	233	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
326	promooooo	pronmmo aail 69%off on new profile	204	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
328	promooooo	pronmmo aail 69%off on new profile	53	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
329	promooooo	pronmmo aail 69%off on new profile	154	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
330	promooooo	pronmmo aail 69%off on new profile	52	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
331	promooooo	pronmmo aail 69%off on new profile	49	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
332	promooooo	pronmmo aail 69%off on new profile	164	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
333	promooooo	pronmmo aail 69%off on new profile	155	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
334	promooooo	pronmmo aail 69%off on new profile	198	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
337	promooooo	pronmmo aail 69%off on new profile	187	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N
339	promooooo	pronmmo aail 69%off on new profile	181	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
341	promooooo	pronmmo aail 69%off on new profile	165	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
343	promooooo	pronmmo aail 69%off on new profile	194	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
344	promooooo	pronmmo aail 69%off on new profile	175	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N
346	promooooo	pronmmo aail 69%off on new profile	215	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
348	promooooo	pronmmo aail 69%off on new profile	225	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
350	promooooo	pronmmo aail 69%off on new profile	205	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
352	promooooo	pronmmo aail 69%off on new profile	235	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N
355	promooooo	pronmmo aail 69%off on new profile	206	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
356	promooooo	pronmmo aail 69%off on new profile	156	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
357	promooooo	pronmmo aail 69%off on new profile	188	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
359	promooooo	pronmmo aail 69%off on new profile	166	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
361	promooooo	pronmmo aail 69%off on new profile	176	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N
362	promooooo	pronmmo aail 69%off on new profile	226	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
364	promooooo	pronmmo aail 69%off on new profile	195	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
366	promooooo	pronmmo aail 69%off on new profile	199	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
368	promooooo	pronmmo aail 69%off on new profile	236	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N
370	promooooo	pronmmo aail 69%off on new profile	216	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
372	promooooo	pronmmo aail 69%off on new profile	157	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
373	promooooo	pronmmo aail 69%off on new profile	183	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
376	promooooo	pronmmo aail 69%off on new profile	177	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
377	promooooo	pronmmo aail 69%off on new profile	196	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
378	promooooo	pronmmo aail 69%off on new profile	189	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N
380	promooooo	pronmmo aail 69%off on new profile	237	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
383	promooooo	pronmmo aail 69%off on new profile	207	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
384	promooooo	pronmmo aail 69%off on new profile	217	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
386	promooooo	pronmmo aail 69%off on new profile	227	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N
388	promooooo	pronmmo aail 69%off on new profile	208	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
391	promooooo	pronmmo aail 69%off on new profile	158	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
392	promooooo	pronmmo aail 69%off on new profile	190	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
394	promooooo	pronmmo aail 69%off on new profile	168	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
396	promooooo	pronmmo aail 69%off on new profile	184	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
397	promooooo	pronmmo aail 69%off on new profile	178	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
399	promooooo	pronmmo aail 69%off on new profile	228	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N
401	promooooo	pronmmo aail 69%off on new profile	218	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
404	promooooo	pronmmo aail 69%off on new profile	238	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
407	promooooo	pronmmo aail 69%off on new profile	179	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N
408	promooooo	pronmmo aail 69%off on new profile	229	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N
409	promooooo	pronmmo aail 69%off on new profile	169	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N
410	promooooo	pronmmo aail 69%off on new profile	219	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N
568	Hi	Hi	161	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4
411	promooooo	pronmmo aail 69%off on new profile	209	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N
412	promooooo	pronmmo aail 69%off on new profile	191	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:39	2025-06-09 09:02:39	\N
413	promooooo	pronmmo aail 69%off on new profile	202	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:39	2025-06-09 09:02:39	\N
414	promooooo	pronmmo aail 69%off on new profile	239	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:39	2025-06-09 09:02:39	\N
415	promooooo	pronmmo aail 69%off on new profile	170	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N
416	promooooo	pronmmo aail 69%off on new profile	230	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N
417	promooooo	pronmmo aail 69%off on new profile	192	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N
418	promooooo	pronmmo aail 69%off on new profile	203	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N
419	promooooo	pronmmo aail 69%off on new profile	220	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:41	2025-06-09 09:02:41	\N
420	promooooo	pronmmo aail 69%off on new profile	210	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:41	2025-06-09 09:02:41	\N
421	promooooo	pronmmo aail 69%off on new profile	240	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:41	2025-06-09 09:02:41	\N
422	promooooo	pronmmo aail 69%off on new profile	171	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N
423	promooooo	pronmmo aail 69%off on new profile	161	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N
424	promooooo	pronmmo aail 69%off on new profile	241	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N
425	promooooo	pronmmo aail 69%off on new profile	211	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N
426	promooooo	pronmmo aail 69%off on new profile	231	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N
427	promooooo	pronmmo aail 69%off on new profile	162	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N
428	promooooo	pronmmo aail 69%off on new profile	212	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N
429	promooooo	pronmmo aail 69%off on new profile	172	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N
430	promooooo	pronmmo aail 69%off on new profile	222	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N
431	promooooo	pronmmo aail 69%off on new profile	242	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N
432	promooooo	pronmmo aail 69%off on new profile	213	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N
433	promooooo	pronmmo aail 69%off on new profile	163	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N
434	promooooo	pronmmo aail 69%off on new profile	223	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N
435	promooooo	pronmmo aail 69%off on new profile	173	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N
436	promooooo	pronmmo aail 69%off on new profile	233	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N
437	wdewdewd	edse	234	1	\N	no	6846a3bfcd212_1749459903.jpg	1	2025-06-09 09:05:04	2025-06-09 09:05:04	\N
438	testttt	testtt	243	1	\N	no	6846af6cae577_1749462892.png	1	2025-06-09 09:54:52	2025-06-09 09:54:52	\N
439	gfgfg	gfgfdgr	215	1	\N	no	6846afce4ca9b_1749462990.jpg	1	2025-06-09 09:56:30	2025-06-09 09:56:30	\N
440	testing push	testing push	215	1	\N	no	6846b1d783c35_1749463511.png	1	2025-06-09 10:05:11	2025-06-09 10:05:11	\N
441	testing pushhhhh	testing pushhhhh	215	1	\N	no	6846b3165f43d_1749463830.jpg	1	2025-06-09 10:10:30	2025-06-09 10:10:30	\N
442	This is Test	Not every thing free	234	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:55	2025-06-09 13:49:55	1
443	This is Test	Not every thing free	185	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:55	2025-06-09 13:49:55	1
444	This is Test	Not every thing free	214	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1
445	This is Test	Not every thing free	224	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1
446	This is Test	Not every thing free	180	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1
447	This is Test	Not every thing free	51	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1
448	This is Test	Not every thing free	197	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1
449	This is Test	Not every thing free	186	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
450	This is Test	Not every thing free	193	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
451	This is Test	Not every thing free	50	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
452	This is Test	Not every thing free	174	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
453	This is Test	Not every thing free	204	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
454	This is Test	Not every thing free	53	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
455	This is Test	Not every thing free	154	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
456	This is Test	Not every thing free	52	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
457	This is Test	Not every thing free	49	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
458	This is Test	Not every thing free	164	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
459	This is Test	Not every thing free	155	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
460	This is Test	Not every thing free	198	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1
461	This is Test	Not every thing free	187	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1
462	This is Test	Not every thing free	181	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1
463	This is Test	Not every thing free	165	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1
464	This is Test	Not every thing free	194	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1
465	This is Test	Not every thing free	175	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1
466	This is Test	Not every thing free	225	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1
467	This is Test	Not every thing free	205	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1
468	This is Test	Not every thing free	215	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1
469	This is Test	Not every thing free	235	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1
470	This is Test	Not every thing free	206	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1
471	This is Test	Not every thing free	156	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1
472	This is Test	Not every thing free	188	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1
473	This is Test	Not every thing free	166	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1
474	This is Test	Not every thing free	176	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1
475	This is Test	Not every thing free	226	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1
476	This is Test	Not every thing free	195	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1
477	This is Test	Not every thing free	199	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:02	2025-06-09 13:50:02	1
478	This is Test	Not every thing free	236	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:02	2025-06-09 13:50:02	1
479	This is Test	Not every thing free	216	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:02	2025-06-09 13:50:02	1
480	This is Test	Not every thing free	157	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1
481	This is Test	Not every thing free	183	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1
482	This is Test	Not every thing free	177	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1
483	This is Test	Not every thing free	196	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1
484	This is Test	Not every thing free	189	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1
485	This is Test	Not every thing free	237	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1
486	This is Test	Not every thing free	207	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1
487	This is Test	Not every thing free	217	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1
488	This is Test	Not every thing free	227	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1
489	This is Test	Not every thing free	208	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
490	This is Test	Not every thing free	158	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
491	This is Test	Not every thing free	190	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
492	This is Test	Not every thing free	168	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
493	This is Test	Not every thing free	184	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
494	This is Test	Not every thing free	178	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
495	This is Test	Not every thing free	228	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1
496	This is Test	Not every thing free	218	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:06	2025-06-09 13:50:06	1
497	This is Test	Not every thing free	238	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:06	2025-06-09 13:50:06	1
498	This is Test	Not every thing free	179	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1
499	This is Test	Not every thing free	229	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1
500	This is Test	Not every thing free	169	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1
501	This is Test	Not every thing free	219	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1
502	This is Test	Not every thing free	209	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1
503	This is Test	Not every thing free	191	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:08	2025-06-09 13:50:08	1
504	This is Test	Not every thing free	202	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:08	2025-06-09 13:50:08	1
505	This is Test	Not every thing free	239	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:08	2025-06-09 13:50:08	1
506	This is Test	Not every thing free	170	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:09	2025-06-09 13:50:09	1
507	This is Test	Not every thing free	230	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:09	2025-06-09 13:50:09	1
508	This is Test	Not every thing free	192	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:09	2025-06-09 13:50:09	1
509	This is Test	Not every thing free	203	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1
569	Hi	Hi	231	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4
510	This is Test	Not every thing free	220	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1
511	This is Test	Not every thing free	210	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1
512	This is Test	Not every thing free	240	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1
513	This is Test	Not every thing free	171	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:11	2025-06-09 13:50:11	1
514	This is Test	Not every thing free	161	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:11	2025-06-09 13:50:11	1
515	This is Test	Not every thing free	241	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:11	2025-06-09 13:50:11	1
516	This is Test	Not every thing free	211	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1
517	This is Test	Not every thing free	231	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1
518	This is Test	Not every thing free	162	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1
519	This is Test	Not every thing free	212	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1
520	This is Test	Not every thing free	172	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1
521	This is Test	Not every thing free	222	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1
522	This is Test	Not every thing free	242	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1
523	This is Test	Not every thing free	213	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1
524	This is Test	Not every thing free	163	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1
525	This is Test	Not every thing free	223	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1
526	This is Test	Not every thing free	173	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:14	2025-06-09 13:50:14	1
527	This is Test	Not every thing free	233	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:14	2025-06-09 13:50:14	1
528	This is Test	Not every thing free	243	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:14	2025-06-09 13:50:14	1
529	test	test	243	1	\N	no	6846ebacc9a87_1749478316.png	1	2025-06-09 14:11:57	2025-06-09 14:11:57	2
530	Hi	Hi	230	1	\N	no	684943ba4aaf7_1749631930.jpg	1	2025-06-11 08:52:10	2025-06-11 08:52:10	3
531	Hi	Hi	185	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:47	2025-06-11 08:53:47	4
532	Hi	Hi	214	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:47	2025-06-11 08:53:47	4
533	Hi	Hi	224	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:47	2025-06-11 08:53:47	4
534	Hi	Hi	51	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
535	Hi	Hi	197	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
536	Hi	Hi	186	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
537	Hi	Hi	193	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
538	Hi	Hi	50	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
539	Hi	Hi	53	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
540	Hi	Hi	52	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
541	Hi	Hi	49	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
542	Hi	Hi	198	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
543	Hi	Hi	165	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4
544	Hi	Hi	205	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4
545	Hi	Hi	206	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4
546	Hi	Hi	188	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4
547	Hi	Hi	166	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4
548	Hi	Hi	236	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4
549	Hi	Hi	183	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
550	Hi	Hi	189	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
551	Hi	Hi	207	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
552	Hi	Hi	158	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
553	Hi	Hi	190	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
554	Hi	Hi	184	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
555	Hi	Hi	178	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4
556	Hi	Hi	228	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4
557	Hi	Hi	218	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4
558	Hi	Hi	179	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4
559	Hi	Hi	229	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4
560	Hi	Hi	219	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4
561	Hi	Hi	209	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4
562	Hi	Hi	191	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4
563	Hi	Hi	202	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4
564	Hi	Hi	170	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4
565	Hi	Hi	230	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4
566	Hi	Hi	192	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4
570	Hi	Hi	212	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4
571	Hi	Hi	222	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4
572	Hi	Hi	242	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4
573	Hi	Hi	213	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:55	2025-06-11 08:53:55	4
574	Buy 1 get 1 Free	Buy 1 get 1 Free	234	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:48	2025-06-11 08:55:48	5
575	Buy 1 get 1 Free	Buy 1 get 1 Free	185	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:48	2025-06-11 08:55:48	5
576	Buy 1 get 1 Free	Buy 1 get 1 Free	244	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:48	2025-06-11 08:55:48	5
577	Buy 1 get 1 Free	Buy 1 get 1 Free	214	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:49	2025-06-11 08:55:49	5
578	Buy 1 get 1 Free	Buy 1 get 1 Free	224	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:49	2025-06-11 08:55:49	5
579	Buy 1 get 1 Free	Buy 1 get 1 Free	180	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:49	2025-06-11 08:55:49	5
580	Buy 1 get 1 Free	Buy 1 get 1 Free	51	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
581	Buy 1 get 1 Free	Buy 1 get 1 Free	197	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
582	Buy 1 get 1 Free	Buy 1 get 1 Free	186	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
583	Buy 1 get 1 Free	Buy 1 get 1 Free	193	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
584	Buy 1 get 1 Free	Buy 1 get 1 Free	50	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
585	Buy 1 get 1 Free	Buy 1 get 1 Free	174	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
586	Buy 1 get 1 Free	Buy 1 get 1 Free	204	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5
587	Buy 1 get 1 Free	Buy 1 get 1 Free	53	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
588	Buy 1 get 1 Free	Buy 1 get 1 Free	154	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
589	Buy 1 get 1 Free	Buy 1 get 1 Free	52	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
590	Buy 1 get 1 Free	Buy 1 get 1 Free	49	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
591	Buy 1 get 1 Free	Buy 1 get 1 Free	164	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
592	Buy 1 get 1 Free	Buy 1 get 1 Free	155	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
593	Buy 1 get 1 Free	Buy 1 get 1 Free	198	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
594	Buy 1 get 1 Free	Buy 1 get 1 Free	187	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
595	Buy 1 get 1 Free	Buy 1 get 1 Free	181	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
596	Buy 1 get 1 Free	Buy 1 get 1 Free	165	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5
597	Buy 1 get 1 Free	Buy 1 get 1 Free	194	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5
598	Buy 1 get 1 Free	Buy 1 get 1 Free	175	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5
599	Buy 1 get 1 Free	Buy 1 get 1 Free	225	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5
600	Buy 1 get 1 Free	Buy 1 get 1 Free	205	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5
601	Buy 1 get 1 Free	Buy 1 get 1 Free	215	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5
602	Buy 1 get 1 Free	Buy 1 get 1 Free	235	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5
603	Buy 1 get 1 Free	Buy 1 get 1 Free	206	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5
604	Buy 1 get 1 Free	Buy 1 get 1 Free	156	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5
605	Buy 1 get 1 Free	Buy 1 get 1 Free	188	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5
606	Buy 1 get 1 Free	Buy 1 get 1 Free	166	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5
607	Buy 1 get 1 Free	Buy 1 get 1 Free	176	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5
608	Buy 1 get 1 Free	Buy 1 get 1 Free	226	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5
609	Buy 1 get 1 Free	Buy 1 get 1 Free	195	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5
610	Buy 1 get 1 Free	Buy 1 get 1 Free	199	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:55	2025-06-11 08:55:55	5
611	Buy 1 get 1 Free	Buy 1 get 1 Free	236	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:55	2025-06-11 08:55:55	5
612	Buy 1 get 1 Free	Buy 1 get 1 Free	216	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:55	2025-06-11 08:55:55	5
613	Buy 1 get 1 Free	Buy 1 get 1 Free	157	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5
614	Buy 1 get 1 Free	Buy 1 get 1 Free	183	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5
615	Buy 1 get 1 Free	Buy 1 get 1 Free	177	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5
616	Buy 1 get 1 Free	Buy 1 get 1 Free	196	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5
617	Buy 1 get 1 Free	Buy 1 get 1 Free	189	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5
618	Buy 1 get 1 Free	Buy 1 get 1 Free	237	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5
619	Buy 1 get 1 Free	Buy 1 get 1 Free	207	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5
620	Buy 1 get 1 Free	Buy 1 get 1 Free	217	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5
621	Buy 1 get 1 Free	Buy 1 get 1 Free	227	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5
622	Buy 1 get 1 Free	Buy 1 get 1 Free	208	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5
623	Buy 1 get 1 Free	Buy 1 get 1 Free	158	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5
624	Buy 1 get 1 Free	Buy 1 get 1 Free	190	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5
625	Buy 1 get 1 Free	Buy 1 get 1 Free	168	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5
626	Buy 1 get 1 Free	Buy 1 get 1 Free	184	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5
627	Buy 1 get 1 Free	Buy 1 get 1 Free	178	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5
628	Buy 1 get 1 Free	Buy 1 get 1 Free	228	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:59	2025-06-11 08:55:59	5
629	Buy 1 get 1 Free	Buy 1 get 1 Free	218	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:59	2025-06-11 08:55:59	5
630	Buy 1 get 1 Free	Buy 1 get 1 Free	238	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:59	2025-06-11 08:55:59	5
631	Buy 1 get 1 Free	Buy 1 get 1 Free	179	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:00	2025-06-11 08:56:00	5
632	Buy 1 get 1 Free	Buy 1 get 1 Free	229	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:00	2025-06-11 08:56:00	5
633	Buy 1 get 1 Free	Buy 1 get 1 Free	169	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:00	2025-06-11 08:56:00	5
634	Buy 1 get 1 Free	Buy 1 get 1 Free	219	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:01	2025-06-11 08:56:01	5
635	Buy 1 get 1 Free	Buy 1 get 1 Free	209	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:01	2025-06-11 08:56:01	5
636	Buy 1 get 1 Free	Buy 1 get 1 Free	191	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:01	2025-06-11 08:56:01	5
637	Buy 1 get 1 Free	Buy 1 get 1 Free	202	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:02	2025-06-11 08:56:02	5
638	Buy 1 get 1 Free	Buy 1 get 1 Free	239	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:02	2025-06-11 08:56:02	5
639	Buy 1 get 1 Free	Buy 1 get 1 Free	170	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:02	2025-06-11 08:56:02	5
640	Buy 1 get 1 Free	Buy 1 get 1 Free	230	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:03	2025-06-11 08:56:03	5
641	Buy 1 get 1 Free	Buy 1 get 1 Free	192	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:03	2025-06-11 08:56:03	5
642	Buy 1 get 1 Free	Buy 1 get 1 Free	203	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5
643	Buy 1 get 1 Free	Buy 1 get 1 Free	220	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5
644	Buy 1 get 1 Free	Buy 1 get 1 Free	210	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5
645	Buy 1 get 1 Free	Buy 1 get 1 Free	240	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5
646	Buy 1 get 1 Free	Buy 1 get 1 Free	171	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:05	2025-06-11 08:56:05	5
647	Buy 1 get 1 Free	Buy 1 get 1 Free	161	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:05	2025-06-11 08:56:05	5
648	Buy 1 get 1 Free	Buy 1 get 1 Free	241	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:05	2025-06-11 08:56:05	5
649	Buy 1 get 1 Free	Buy 1 get 1 Free	211	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5
650	Buy 1 get 1 Free	Buy 1 get 1 Free	231	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5
651	Buy 1 get 1 Free	Buy 1 get 1 Free	162	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5
652	Buy 1 get 1 Free	Buy 1 get 1 Free	212	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5
653	Buy 1 get 1 Free	Buy 1 get 1 Free	172	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5
654	Buy 1 get 1 Free	Buy 1 get 1 Free	222	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5
655	Buy 1 get 1 Free	Buy 1 get 1 Free	242	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5
656	Buy 1 get 1 Free	Buy 1 get 1 Free	213	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5
657	Buy 1 get 1 Free	Buy 1 get 1 Free	163	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5
658	Buy 1 get 1 Free	Buy 1 get 1 Free	223	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5
659	Buy 1 get 1 Free	Buy 1 get 1 Free	173	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:08	2025-06-11 08:56:08	5
660	Buy 1 get 1 Free	Buy 1 get 1 Free	233	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:08	2025-06-11 08:56:08	5
661	Buy 1 get 1 Free	Buy 1 get 1 Free	243	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:08	2025-06-11 08:56:08	5
662	teste	teste	234	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 08:59:59	2025-06-11 08:59:59	6
663	teste	teste	185	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 08:59:59	2025-06-11 08:59:59	6
664	teste	teste	244	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 08:59:59	2025-06-11 08:59:59	6
665	teste	teste	214	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:00	2025-06-11 09:00:00	6
666	teste	teste	224	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:00	2025-06-11 09:00:00	6
667	teste	teste	180	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:00	2025-06-11 09:00:00	6
668	teste	teste	51	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:01	2025-06-11 09:00:01	6
669	teste	teste	197	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:01	2025-06-11 09:00:01	6
670	teste	teste	186	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
671	teste	teste	193	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
672	teste	teste	50	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
673	teste	teste	174	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
674	teste	teste	204	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
675	teste	teste	53	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
676	teste	teste	154	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
677	teste	teste	52	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
678	teste	teste	49	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
679	teste	teste	164	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
680	teste	teste	155	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6
681	teste	teste	198	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6
682	teste	teste	187	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6
683	teste	teste	181	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6
684	teste	teste	165	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6
685	teste	teste	194	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6
686	teste	teste	175	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6
687	teste	teste	225	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6
688	teste	teste	205	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6
689	teste	teste	215	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6
690	teste	teste	235	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6
691	teste	teste	206	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6
692	teste	teste	156	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6
693	teste	teste	188	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6
694	teste	teste	166	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:06	2025-06-11 09:00:06	6
695	teste	teste	176	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:06	2025-06-11 09:00:06	6
696	teste	teste	226	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:06	2025-06-11 09:00:06	6
697	teste	teste	195	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6
698	teste	teste	199	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6
699	teste	teste	236	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6
700	teste	teste	216	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6
701	teste	teste	157	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6
702	teste	teste	183	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6
703	teste	teste	177	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6
704	teste	teste	196	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6
705	teste	teste	189	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6
706	teste	teste	237	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6
707	teste	teste	207	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6
708	teste	teste	217	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6
709	teste	teste	227	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6
710	teste	teste	208	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6
711	teste	teste	158	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6
712	teste	teste	190	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6
713	teste	teste	168	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6
714	teste	teste	184	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6
715	teste	teste	178	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6
716	teste	teste	228	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6
717	teste	teste	218	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6
718	teste	teste	238	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6
719	teste	teste	179	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6
720	teste	teste	229	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6
721	teste	teste	169	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6
722	teste	teste	219	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6
723	teste	teste	209	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6
724	teste	teste	191	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6
725	teste	teste	202	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:13	2025-06-11 09:00:13	6
726	teste	teste	239	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:13	2025-06-11 09:00:13	6
727	teste	teste	170	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:13	2025-06-11 09:00:13	6
728	teste	teste	230	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6
729	teste	teste	192	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6
730	teste	teste	203	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6
731	teste	teste	220	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6
732	teste	teste	210	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:15	2025-06-11 09:00:15	6
733	teste	teste	240	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:15	2025-06-11 09:00:15	6
734	teste	teste	171	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:15	2025-06-11 09:00:15	6
735	teste	teste	161	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6
736	teste	teste	241	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6
737	teste	teste	211	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6
738	teste	teste	231	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6
739	teste	teste	162	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6
740	teste	teste	212	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6
741	teste	teste	172	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6
742	teste	teste	222	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6
743	teste	teste	242	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6
744	teste	teste	213	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6
745	teste	teste	163	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6
746	teste	teste	223	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6
747	teste	teste	173	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6
748	teste	teste	233	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6
749	teste	teste	243	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:24	2025-06-11 09:00:24	6
750	welcome to luquia	Our app is not intended for users under the age of 18. We do not knowingly collect data from children.	262	1	\N	no	6871f7c17af24_1752299457.png	1	2025-07-12 05:50:57	2025-07-12 05:50:57	7
751	Membership 50off	Membership 50off on premium users resubscription	234	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:37	2025-07-12 10:48:37	8
752	Membership 50off	Membership 50off on premium users resubscription	244	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8
753	Membership 50off	Membership 50off on premium users resubscription	197	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8
754	Membership 50off	Membership 50off on premium users resubscription	164	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8
755	Membership 50off	Membership 50off on premium users resubscription	194	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8
756	Membership 50off	Membership 50off on premium users resubscription	263	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:39	2025-07-12 10:48:39	8
757	Membership 50off	Membership 50off on premium users resubscription	264	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:39	2025-07-12 10:48:39	8
758	Membership 50off	Membership 50off on premium users resubscription	256	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:39	2025-07-12 10:48:39	8
759	Membership 50off	Membership 50off on premium users resubscription	257	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:40	2025-07-12 10:48:40	8
760	free Standard membership	free Standard membership today only. Join us and search your matches	244	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:33	2025-07-12 11:08:33	9
761	free Standard membership	free Standard membership today only. Join us and search your matches	245	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:34	2025-07-12 11:08:34	9
762	free Standard membership	free Standard membership today only. Join us and search your matches	263	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:34	2025-07-12 11:08:34	9
763	free Standard membership	free Standard membership today only. Join us and search your matches	264	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:34	2025-07-12 11:08:34	9
764	free Standard membership	free Standard membership today only. Join us and search your matches	257	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:35	2025-07-12 11:08:35	9
765	50off on subscription	50off on subscription. beome a premium member	267	1	\N	no	6873702ac9f74_1752395818.png	1	2025-07-13 08:36:58	2025-07-13 08:36:58	10
766	50 off on premium subscription	50 off on premium subscription. become a member today	262	1	\N	no	6873708d5003a_1752395917.png	1	2025-07-13 08:38:37	2025-07-13 08:38:37	11
767	first user 40off	first user 40off	262	1	\N	no	687370ce5cb3b_1752395982.jpg	1	2025-07-13 08:39:42	2025-07-13 08:39:42	12
768	new test	new test	260	1	\N	no	68738b6b751e1_1752402795.png	1	2025-07-13 10:33:15	2025-07-13 10:33:15	13
769	new test	new test	262	1	\N	no	68738b6b751e1_1752402795.png	1	2025-07-13 10:33:16	2025-07-13 10:33:16	13
770	hi	hi	260	1	\N	no	68738be23f36a_1752402914.png	1	2025-07-13 10:35:14	2025-07-13 10:35:14	14
771	hi	hi	262	1	\N	no	68738be23f36a_1752402914.png	1	2025-07-13 10:35:15	2025-07-13 10:35:15	14
772	Hamid	asfadsfd	265	1	\N	no	6873addb38a33_1752411611.png	1	2025-07-13 13:00:11	2025-07-13 13:00:11	15
773	dsfsdf	dsfsd	265	1	\N	no	6873ae1b6397a_1752411675.png	1	2025-07-13 13:01:15	2025-07-13 13:01:15	16
774	jjdsfsd	dsfksdk	265	1	\N	no	6873ae4641794_1752411718.png	1	2025-07-13 13:01:58	2025-07-13 13:01:58	17
775	hhhhhhhh	jkkkk	265	1	\N	no	6873b29e882a4_1752412830.png	1	2025-07-13 13:20:30	2025-07-13 13:20:30	18
776	hhhhhhjj	jjjjjj	265	1	\N	no	6873b5e728860_1752413671.png	1	2025-07-13 13:34:31	2025-07-13 13:34:31	19
\.


--
-- Data for Name: packages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.packages (id, name, price, status, created_at, updated_at, deleted_at) FROM stdin;
8	Susan Miranda	12	1	2024-12-07 03:32:13	2024-12-07 03:32:13	\N
9	Quincy Nixon	12	0	2024-12-07 03:32:39	2024-12-07 03:32:39	\N
10	Ariel Newton	12	1	2024-12-07 03:35:15	2024-12-07 03:35:15	\N
11	Beatrice Delgado	12	1	2024-12-07 03:35:30	2024-12-07 03:35:30	\N
12	Michael Benson	123	0	2024-12-07 03:35:49	2024-12-07 03:35:49	\N
13	Amir Pittman	67	0	2024-12-07 03:36:04	2024-12-07 03:36:04	\N
14	Test Package	50	0	2024-12-07 15:55:36	2024-12-07 17:56:39	\N
15	Wing Tucker	25	0	2024-12-07 17:57:28	2024-12-07 20:45:17	\N
16	Raju	35	1	2024-12-07 21:25:17	2024-12-07 21:10:03	\N
17	Duncan Colon	45	1	2024-12-07 17:25:54	2024-12-07 17:25:54	\N
18	Wynne Bishop	11111	1	2024-12-07 17:26:17	2024-12-07 17:26:17	\N
19	Malik Stanley	12	0	2024-12-07 18:24:56	2024-12-07 20:45:30	\N
20	Sade Cotton	12	1	2024-12-07 18:25:50	2024-12-07 22:25:50	\N
21	Madonna Tyler	12	0	2024-12-07 18:27:28	2024-12-07 22:27:28	\N
22	Christopher Rowland	12	1	2024-12-07 18:28:41	2024-12-07 20:30:00	\N
23	Neville Kennedy	122	1	2024-12-07 18:30:00	2024-12-16 13:52:11	\N
24	Drew Hoffman	12	1	2024-12-07 18:33:52	2024-12-07 22:33:52	\N
25	April Foster	12	1	2024-12-07 18:34:39	2024-12-07 18:34:39	\N
26	Craig Caldwell	2	1	2024-12-07 19:35:53	2024-12-12 06:49:19	\N
27	Test1q	20	1	2024-12-17 21:01:37	2024-12-19 21:24:31	\N
\.


--
-- Data for Name: packages_addons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.packages_addons (id, package_id, title, deleted_at, created_at, updated_at) FROM stdin;
3	3	Distinctio Ut qui q	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
4	3	Optio elit id et n	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
5	3	Possimus est amet	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
6	3	Omnis veniam enim a	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
7	3	Quo quia tempora quo	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
8	3	Illo sit nisi animi	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
9	4	Reprehenderit amet	\N	2024-12-05 21:35:25	2024-12-05 21:35:25
10	5	Cumque libero sit v	\N	2024-12-05 21:58:52	2024-12-05 21:58:52
11	6	Ex enim ducimus vol	\N	2024-12-05 22:09:23	2024-12-05 22:09:23
12	7	Consequatur distinct	\N	2024-12-05 22:09:39	2024-12-05 22:09:39
13	8	Aut officiis quos la	\N	2024-12-07 03:32:13	2024-12-07 03:32:13
14	8	Ad enim nostrud even	\N	2024-12-07 03:32:13	2024-12-07 03:32:13
15	9	Ratione aut labore o	\N	2024-12-07 03:32:39	2024-12-07 03:32:39
16	10	Cupiditate perspicia	\N	2024-12-07 03:35:15	2024-12-07 03:35:15
17	11	Labore doloribus inc	\N	2024-12-07 03:35:30	2024-12-07 03:35:30
18	12	Non qui pariatur Eu	\N	2024-12-07 03:35:49	2024-12-07 03:35:49
19	13	Accusamus repellendu	\N	2024-12-07 03:36:04	2024-12-07 03:36:04
21	14	Addon Info 2	\N	2024-12-07 15:55:36	2024-12-07 17:50:20
22	14	Addon Info 3	\N	2024-12-07 15:55:36	2024-12-07 17:50:20
23	14	Addon Info 4	\N	2024-12-07 15:55:36	2024-12-07 17:50:20
25	14	new 2	\N	2024-12-07 17:50:20	2024-12-07 17:55:57
26	14	new 3	\N	2024-12-07 17:50:20	2024-12-07 17:55:57
27	14	new 4	\N	2024-12-07 17:50:20	2024-12-07 17:55:57
34	15	New 4	\N	2024-12-07 18:57:37	2024-12-07 18:57:37
35	16	Omnis est nihil quo	\N	2024-12-07 21:25:17	2024-12-07 21:25:17
36	17	gdfgdfgdf	\N	2024-12-07 17:25:54	2024-12-07 21:04:29
37	18	Reiciendis suscipit	\N	2024-12-07 17:26:17	2024-12-07 17:26:17
38	19	Velit earum quia aut	\N	2024-12-07 22:24:56	2024-12-07 22:24:56
39	20	Dicta aut totam nisi	\N	2024-12-07 22:25:50	2024-12-07 22:25:50
40	21	Aliquip necessitatib	\N	2024-12-07 22:27:28	2024-12-07 22:27:28
41	22	In esse facere quae	\N	2024-12-07 18:28:41	2024-12-07 18:28:41
42	23	Ad provident non en	\N	2024-12-07 18:30:00	2024-12-07 18:30:00
43	24	Voluptas quaerat ut	\N	2024-12-07 22:33:52	2024-12-07 22:33:52
44	25	Ad temporibus possim	\N	2024-12-07 18:34:39	2024-12-07 18:34:39
45	26	Ullam aliquid beatae	\N	2024-12-07 19:35:53	2024-12-07 19:35:53
46	16	newwwwwwwwwwww	\N	2024-12-07 21:09:35	2024-12-07 21:09:35
47	16	Rajuuuuuuuuuuuu	\N	2024-12-07 21:10:03	2024-12-07 21:10:03
48	16	bfd	\N	2024-12-07 21:10:59	2024-12-07 21:10:59
79	27	test	\N	2024-12-17 21:01:37	2024-12-17 21:01:37
\.


--
-- Data for Name: parent_approvals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.parent_approvals (id, user_id, name, email, token, status, approved_at, rejected_at, created_at, updated_at) FROM stdin;
1	178	Zahid	mudasserzahid48+14@gmail.com	617b24dd66eafbe0	1	2025-05-27 12:47:00	\N	2025-05-27 12:45:54	2025-05-27 12:47:00
2	179	Abinash	abi@gmail.com	535d0f0fd53c974a	1	2025-05-27 14:33:56	\N	2025-05-27 13:25:00	2025-05-27 14:33:56
3	180	Patent	razahamid43@gmail.com	21fc1ea75400bb71	0	\N	\N	2025-05-27 17:39:48	2025-05-27 17:39:48
4	181	Iqbal	razahamid34@gmail.com	d8b5bd3db2a30d64	1	2025-05-27 18:18:57	\N	2025-05-27 18:16:14	2025-05-27 18:18:57
5	182	Ahmed Khan	hibadxba@hotmail.com	24d437747c3b177d	0	\N	\N	2025-05-28 05:04:53	2025-05-28 05:04:53
6	183	Anil	anil@dxbusinessgroup.com	03db9cc2ac0f4b28	0	\N	\N	2025-05-28 06:09:33	2025-05-28 06:09:33
10	189	Hamid	razahamid34@gmail.com	56868306f41081b1	1	2025-05-28 17:41:19	\N	2025-05-28 17:40:24	2025-05-28 17:41:19
11	192	Hamid	razahamid34@gmail.com	fe0d40f71c87c889	1	2025-05-28 17:53:52	\N	2025-05-28 17:53:29	2025-05-28 17:53:52
12	193	Christopher Columbus	hibadxba@hotmail.com	e19c1059373419ab	1	2025-05-29 07:20:15	\N	2025-05-29 07:14:32	2025-05-29 07:20:15
13	198	Hamid Raza	razahamid34@gmail.com	e2a778e54c968f3e	0	\N	\N	2025-05-29 17:29:40	2025-05-29 17:29:40
14	199	Hamid	razahamid34@gmail.com	e61a61b48b670478	0	\N	\N	2025-05-30 10:52:26	2025-05-30 10:52:26
15	199	Hamid	razahamid34@gmail.com	972f9063cbe670c7	0	\N	\N	2025-05-30 11:05:16	2025-05-30 11:05:16
16	199	Hamid	razahamid34@gmail.com	e71afb86c3a84ccf	0	\N	\N	2025-05-30 11:28:35	2025-05-30 11:28:35
17	201	Malik Sufyan	ajeshkumarcd@gmail.com	03888e3aff229682	0	\N	\N	2025-05-30 11:35:24	2025-05-30 11:35:24
18	201	Malik Sufyan	ajeshkumarcd@gmail.com	de07c7d22796ac00	0	\N	\N	2025-05-30 11:35:44	2025-05-30 11:35:44
19	201	Malik Sufyan	ajeshkumarcd@gmail.com	5237ce823be0d7f9	0	\N	\N	2025-05-30 11:37:03	2025-05-30 11:37:03
20	211	Hamid	razahamid34@gmail.com	5f8e6ece83ebbd48	1	2025-05-31 16:45:30	\N	2025-05-31 16:43:19	2025-05-31 16:45:30
21	213	Sara parent	anil@dxbusinessgroup.com	2efc091e2d7d2c57	2	\N	2025-06-03 03:09:41	2025-06-03 03:07:35	2025-06-03 03:09:41
22	214	Sara parents	anil@dxbusinessgroup.com	2ccf58e848f8d152	1	2025-06-03 03:22:45	\N	2025-06-03 03:22:21	2025-06-03 03:22:45
23	216	Ahmed Khan	hibaejaz97+4@gmail.com	fd310f74acb9eb7b	1	2025-06-03 08:36:23	\N	2025-06-03 08:34:59	2025-06-03 08:36:23
24	219	Sara mother	anil@dxbusinessgroup.com	40e43df8b382c3a5	1	2025-06-04 06:58:23	\N	2025-06-04 06:49:44	2025-06-04 06:58:23
25	220	Hamid	razahamid34@gmail.com	29650139cb65cfe9	2	\N	2025-06-04 07:09:48	2025-06-04 07:08:35	2025-06-04 07:09:48
26	221	Mk Khan	hibaejaz97+6@gmail.com	6a50f229315ef168	2	\N	2025-06-04 07:23:51	2025-06-04 07:22:30	2025-06-04 07:23:51
27	222	Zahid	mudasserzahid48@gmail.com	527aad31fd8367ee	1	2025-06-04 07:40:42	\N	2025-06-04 07:39:21	2025-06-04 07:40:42
28	223	MK Khan	hibaejaz97+6@gmail.com	68390ceed3237c42	1	2025-06-04 07:40:55	\N	2025-06-04 07:40:31	2025-06-04 07:40:55
29	224	Hamid	razahamid34@gmail.com	f37e058ff1be9ce9	1	2025-06-04 07:58:15	\N	2025-06-04 07:57:51	2025-06-04 07:58:15
30	225	Khan	hibaejaz97+8@gmail.com	5044fcb191d5ae0d	2	\N	2025-06-04 08:24:13	2025-06-04 08:23:25	2025-06-04 08:24:13
31	227	Hamid	razahamid34@gmail.com	b5dc4cdee73f3999	1	2025-06-04 16:56:03	\N	2025-06-04 16:55:17	2025-06-04 16:56:03
32	228	Farroq Ahmed	hibaejaz97+9@gmail.com	2d1c31943bdbd23a	2	\N	2025-06-05 06:23:29	2025-06-05 06:22:40	2025-06-05 06:23:29
33	229	Sheikh Shah	hibaejaz97+11@gmail.com	5a1ddaefd6b4a7dc	1	2025-06-05 06:26:40	\N	2025-06-05 06:26:13	2025-06-05 06:26:40
34	231	Mohammed	anil@dxbusinessgroup.com	4a056a1ff7b64df4	1	2025-06-05 07:48:49	\N	2025-06-05 07:46:34	2025-06-05 07:48:49
35	232	Hamid	razahamid34@gmail.com	8a671d983320f603	1	2025-06-05 08:07:24	\N	2025-06-05 08:07:00	2025-06-05 08:07:24
36	233	Salma parent	anil@dxbusinessgroup.com	57ec87218fa9bf5c	1	2025-06-05 08:56:35	\N	2025-06-05 08:55:23	2025-06-05 08:56:35
37	234	Sheikh Sahab	hibaejaz97+12@gmail.com	1e76cd04d65b9de8	1	2025-06-05 09:06:49	\N	2025-06-05 09:04:38	2025-06-05 09:06:49
38	243	Alam Khan	hibaejaz97+13@gmail.com	5e321c923877738d	1	2025-06-09 09:17:12	\N	2025-06-09 09:15:38	2025-06-09 09:17:12
39	244	Yusuf Zai pathan	hibaejaz97+15@gmail.com	66bd124d5a4ca9ab	1	2025-06-10 09:21:57	\N	2025-06-10 09:21:00	2025-06-10 09:21:57
40	246	Hala	hibaejaz97+18@gmail.com	b57afbcf32d1fd2f	1	2025-06-11 09:58:55	\N	2025-06-11 09:56:59	2025-06-11 09:58:55
41	256	Anil	anil@dxbusinessgroup.com	f4a0c6249d864a1c	0	\N	\N	2025-07-11 12:03:46	2025-07-11 12:03:46
42	257	Tariq Mehmood	hibaejaz97+16@gmail.com	3b447fb977771d6b	0	\N	\N	2025-07-11 13:38:08	2025-07-11 13:38:08
43	260	Hamid hajaj	razahamid34+102@gmail.com	f8081d1493b4563f	1	2025-07-12 05:20:13	\N	2025-07-11 18:17:24	2025-07-12 05:20:13
44	266	Hamjsjsjs	razahamid34@gmail.com	d279e358a628b8e1	1	2025-07-13 07:27:17	\N	2025-07-13 07:26:45	2025-07-13 07:27:17
\.


--
-- Data for Name: parent_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.parent_categories (id, name, name_ar, status, created_at, updated_at, icon, sort_order) FROM stdin;
1	Cars	سيارات و االليات	1	2025-03-20 15:03:14	2025-04-08 08:06:10	3XsGczmV0bPIJBchBP2rZ3UbYy6Ibx2tYaFrSbIi.png	0
3	Properties	عقارات	1	2025-03-24 11:02:15	2025-04-08 08:07:04	68H9zRj2qD7R710bmnhuksOUWucfZ5J5beJp1eAX.jpg	0
8	Business & Opportunities	فرص و أعمال	1	2025-04-08 06:07:32	2025-04-08 08:07:28	q1IfyK7uPCrJCgub1mG6Nthm1hTgWf3uRMBUA7zp.jpg	0
4	Vacation Offers	عروض االجازة و السياحة	1	2025-03-24 12:03:27	2025-04-08 08:08:30	mAto7kzFGaIbpQnKKwqp4QD5INUNbBePRMx4e0Da.jpg	0
5	Jobs	وظائف	1	2025-04-08 06:02:25	2025-04-08 08:08:52	qGgvIQOooohBRMcI0oVUKSxcUr9YJmBZEcx80sbM.jpg	0
7	Promotions & Discounts	عروض الترويج والتخفيضات	1	2025-04-08 06:05:10	2025-04-08 08:09:29	ta9fx8v3gHGoBWA6gnXvwblUHaNXjcz7pxNh8SyL.jpg	0
6	Services	عروض المطاعم والوجبات	1	2025-04-08 06:04:43	2025-04-08 08:11:46	SR1N0V1slg999YKns53g2I0OxWWK8RSwUgoonP9G.jpg	0
2	Wedding & Event Halls	صاالت االفراح والمناسبات	1	2025-03-20 15:03:45	2025-04-08 08:12:14	uAAMSc7E06PuGRSorOIv2Vxj79Npi3NouKZ46Cv6.jpg	0
10	Restaurant and meal offers	خدمات	1	2025-04-08 08:04:55	2025-04-08 08:14:02	Z5s7Mlk14gHFJ26knZU810w7eOkhlGRKkTCqX0Sr.jpg	0
9	Used Items	سوق المستعمل	1	2025-04-08 06:08:10	2025-04-08 08:14:20	2DAppLrKZ3CaCnfuc0c87YBTLGRRoWkWcMOlN1Rw.jpg	0
\.


--
-- Data for Name: password_reset_tokens; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.password_reset_tokens (email, token, created_at) FROM stdin;
\.


--
-- Data for Name: payment_reports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.payment_reports (id, transaction_id, payment_status, user_id, ref_id, amount, method_type, vat, wallet_amount_used, created_at, updated_at, ad_id, currency) FROM stdin;
1	416803a42c804ba1745069100	Pending	41	pi_3RFbOCBjsMxFtgBe0sW8jpFr	100.00	1	0.00	0.00	\N	\N	87	\N
2	416803a448121e11745069128	Pending	41	pi_3RFbOdBjsMxFtgBe1oeBehn6	100.00	4	0.00	0.00	\N	\N	87	\N
3	416803a965336cd1745070437	Success	41	pi_3RFbjlBjsMxFtgBe08XDFQn6	100.00	3	0.00	0.00	\N	2025-04-19 13:47:17	88	\N
4	416803d3dfcd1401745081311	Success	41	pi_3RFeZ9BjsMxFtgBe1GosmPne	100.00	1	0.00	0.00	\N	2025-04-19 16:48:59	89	\N
5	416803d6122f4641745081874	Pending	41	pi_3RFeiEBjsMxFtgBe1TV7E2An	100.00	1	0.00	0.00	\N	\N	90	\N
6	416803d63b649d11745081915	Pending	41	pi_3RFeitBjsMxFtgBe19w6ca1g	100.00	1	0.00	0.00	\N	\N	90	\N
7	416803d65d7f8f51745081949	Success	41	pi_3RFejRBjsMxFtgBe0vSGF4k6	100.00	3	0.00	0.00	\N	2025-04-19 16:59:09	90	\N
8	416803e12ac03ea1745084714	Success	41	pi_3RFfS2BjsMxFtgBe1A8E7AQm	100.00	1	0.00	0.00	\N	2025-04-19 17:45:38	121	\N
9	416803e6c0c1f861745086144	Success	41	pi_3RFfp6BjsMxFtgBe0ZGNwqcT	100.00	1	0.00	0.00	\N	2025-04-19 18:09:05	122	\N
10	416803ea79c613b1745087097	Pending	41	pi_3RFg4TBjsMxFtgBe0AZyNr8I	100.00	1	0.00	0.00	\N	\N	125	\N
11	416803ea836e5a01745087107	Pending	41	pi_3RFg4dBjsMxFtgBe0W6dKoGD	100.00	1	0.00	0.00	\N	\N	125	\N
12	416803eaf4797bf1745087220	Pending	41	pi_3RFg6SBjsMxFtgBe1JXrYZeB	100.00	1	0.00	0.00	\N	\N	125	\N
13	416803ee615f64b1745088097	Pending	41	pi_3RFgKbBjsMxFtgBe1ZhmQKXX	100.00	1	0.00	0.00	\N	\N	129	\N
14	416803ee8f62c4f1745088143	Pending	41	pi_3RFgLLBjsMxFtgBe0jexiP4Q	100.00	1	0.00	0.00	\N	\N	129	\N
15	416803ef91924021745088401	Success	41	pi_3RFgPVBjsMxFtgBe0hgwpBxe	100.00	1	0.00	0.00	\N	2025-04-19 18:47:09	131	\N
16	416803f0756b8651745088629	Success	41	pi_3RFgTBBjsMxFtgBe09QdhQnw	100.00	1	0.00	0.00	\N	2025-04-19 18:50:50	132	\N
17	416803f0b7ca9c51745088695	Success	41	pi_3RFgUFBjsMxFtgBe06SqWIJK	100.00	1	0.00	0.00	\N	2025-04-19 18:51:57	132	\N
18	416803f1e1a62001745088993	Success	41	pi_3RFgZ3BjsMxFtgBe0U9PWfrd	100.00	1	0.00	0.00	\N	2025-04-19 18:56:54	134	\N
19	466807388fdc3cf1745303695	Success	46	pi_3RGaPzBjsMxFtgBe0OXB8lv1	100.00	1	0.00	0.00	\N	2025-04-22 06:35:29	182	\N
20	426807443d7c2da1745306685	Success	42	pi_3RGbCDBjsMxFtgBe0daYW4D3	100.00	1	0.00	0.00	\N	2025-04-22 07:25:30	183	\N
21	476808a35814bdf1745396568	Success	47	pi_3RGyZvBjsMxFtgBe1gP1bOQX	100.00	3	0.00	0.00	\N	2025-04-23 08:22:48	184	\N
22	476808a6e47087d1745397476	Success	47	pi_3RGyoaBjsMxFtgBe0Ih2cBRH	200.00	1	0.00	0.00	\N	2025-04-23 08:38:23	185	\N
23	41680a0151221a81745486161	Success	41	pi_3RHLsyBjsMxFtgBe1bE3tNsT	100.00	3	0.00	0.00	\N	2025-04-24 09:16:01	187	\N
24	41680a016b2c8b01745486187	Success	41	pi_3RHLtPBjsMxFtgBe0GXW9afo	100.00	1	0.00	0.00	\N	2025-04-24 09:16:46	187	\N
25	41680a039f707651745486751	Success	41	pi_3RHM2VBjsMxFtgBe1g8IZyTw	100.00	3	0.00	0.00	\N	2025-04-24 09:25:52	187	\N
26	41680a04235d4a31745486883	Success	35	pi_3RHM4dBjsMxFtgBe1EpItEyC	100.00	3	0.00	0.00	\N	2025-04-24 09:28:03	187	\N
27	157683448ae31abd1748256942	Pending	157	1rtHMQRSh0	100.00	1	0.00	0.00	\N	\N	\N	\N
28	157683449de7fa0b1748257246	Success	157	sgIyrzP0tj	100.00	1	0.00	0.00	\N	2025-05-26 11:00:46	\N	\N
29	15768344a399c5771748257337	Success	157	3Ykz2rLGlq	100.00	1	0.00	0.00	\N	2025-05-26 11:02:18	\N	\N
30	16968354e8fe9d121748323983	Success	169	DblUshueJ5	100.00	1	0.00	0.00	\N	2025-05-27 05:33:04	\N	\N
31	171683553780b96e1748325240	Success	171	3ZGfu0Rmv8	100.00	2	0.00	0.00	\N	2025-05-27 05:54:00	\N	\N
32	175683578e84217f1748334824	Success	175	2enSNjvt3H	100.00	2	0.00	0.00	\N	2025-05-27 08:33:44	\N	\N
33	17668357b7d0e5e51748335485	Success	176	K5lAMBSC12	100.00	2	0.00	0.00	\N	2025-05-27 08:44:45	\N	\N
34	1796835bf2959dd61748352809	Success	179	jASgn3xX0i	100.00	1	0.00	0.00	\N	2025-05-27 13:33:29	\N	\N
35	18268369c9b895ad1748409499	Success	182	YoacdtKb8j	60.00	1	0.00	0.00	\N	2025-05-28 05:18:20	\N	\N
36	1936838095817caf1748502872	Success	193	4uIzEvRLhB	50.00	1	0.00	0.00	\N	2025-05-29 07:14:32	\N	\N
37	194683816354cfba1748506165	Success	194	iP1oRCmruW	200.00	1	0.00	0.00	\N	2025-05-29 08:09:25	\N	\N
38	1956838196cbc9b71748506988	Success	195	pdLaTGZBq0	200.00	1	0.00	0.00	\N	2025-05-29 08:23:09	\N	\N
39	19668381caea861b1748507822	Success	196	y5srYLzlaR	200.00	1	0.00	0.00	\N	2025-05-29 08:37:03	\N	\N
40	19768389889ca2c91748539529	Success	197	Cr7dv2FxgL	200.00	2	0.00	0.00	\N	2025-05-29 17:25:30	\N	\N
41	198683899840dfe01748539780	Success	198	s6JqtyVADc	200.00	2	0.00	0.00	\N	2025-05-29 17:29:40	\N	\N
42	19968398de9a980c1748602345	Success	199	aFAmWehnVJ	200.00	2	0.00	0.00	\N	2025-05-30 10:52:26	\N	\N
43	199683990cdce2201748603085	Success	199	3iM769xOqc	200.00	1	0.00	0.00	\N	2025-05-30 11:05:16	\N	\N
44	19968399455eeb9c1748603989	Success	199	CnqOZkvaeB	200.00	1	0.00	0.00	\N	2025-05-30 11:19:58	\N	\N
45	199683994b4e3eb21748604084	Success	199	0nhiQAKx1f	200.00	1	0.00	0.00	\N	2025-05-30 11:21:31	\N	\N
46	200683995929443e1748604306	Success	200	GkVZIA7nRq	100.00	1	0.00	0.00	\N	2025-05-30 11:25:07	\N	\N
47	1996839963ad14f71748604474	Success	199	fjcEqXuxrS	200.00	1	0.00	0.00	\N	2025-05-30 11:28:00	\N	\N
48	199683996594af9a1748604505	Success	199	9wYzLg1yOE	200.00	1	0.00	0.00	\N	2025-05-30 11:28:35	\N	\N
49	201683997fc7b7761748604924	Success	201	BvQLIRrS3a	200.00	1	0.00	0.00	\N	2025-05-30 11:35:24	\N	\N
50	201683998100a4111748604944	Success	201	6Pp75sw8zK	200.00	1	0.00	0.00	\N	2025-05-30 11:35:44	\N	\N
51	2016839985f25fe11748605023	Success	201	5YNpxOP1Bm	200.00	1	0.00	0.00	\N	2025-05-30 11:37:03	\N	\N
52	2026839a4dfb88461748608223	Success	202	6hntvkgFdb	100.00	1	0.00	0.00	\N	2025-05-30 12:30:24	\N	\N
53	2086839be62e2feb1748614754	Success	208	Cs5Nlfj3eB	100.00	1	0.00	0.00	\N	2025-05-30 14:19:15	\N	\N
54	211683b31a6afd251748709798	Success	211	EqM9JnulvN	200.00	2	0.00	0.00	\N	2025-05-31 16:43:19	\N	\N
55	213683e66f6e23e81748920054	Success	213	Z9pzvyg2O0	200.00	1	0.00	0.00	\N	2025-06-03 03:07:35	\N	\N
56	214683e6a6c749871748920940	Success	214	4odqB6Tywn	200.00	1	0.00	0.00	\N	2025-06-03 03:22:21	\N	\N
57	215683e869e4240b1748928158	Success	215	orFAfDmj63	100.00	1	0.00	0.00	\N	2025-06-03 05:22:38	\N	\N
58	216683eb3b1c744a1748939697	Success	216	KPkfpex8ID	200.00	1	0.00	0.00	\N	2025-06-03 08:34:59	\N	\N
59	219683fec87c743a1749019783	Success	219	VAHUDxs0Si	200.00	1	0.00	0.00	\N	2025-06-04 06:49:44	\N	\N
60	220683ff0f320d931749020915	Success	220	SzRHWfdTcb	200.00	2	0.00	0.00	\N	2025-06-04 07:08:35	\N	\N
61	221683ff4366a2241749021750	Success	221	QiWnYRdTpM	200.00	1	0.00	0.00	\N	2025-06-04 07:22:30	\N	\N
62	223683ff86f3d2411749022831	Success	223	YjBnTcClFK	200.00	1	0.00	0.00	\N	2025-06-04 07:40:31	\N	\N
63	224683ffc7ed05401749023870	Success	224	6rUF7epXjh	200.00	2	0.00	0.00	\N	2025-06-04 07:57:51	\N	\N
64	2256840027d254731749025405	Success	225	yIBa2Yn86D	200.00	1	0.00	0.00	\N	2025-06-04 08:23:25	\N	\N
65	228684137b00257f1749104560	Success	228	AYwyt6eFmW	100.00	1	0.00	0.00	\N	2025-06-05 06:22:40	\N	\N
66	229684138857057f1749104773	Success	229	C4H5Ubqgjh	200.00	1	0.00	0.00	\N	2025-06-05 06:26:13	\N	\N
67	23168414b5a465281749109594	Success	231	exVQi0zlfk	200.00	1	0.00	0.00	\N	2025-06-05 07:46:34	\N	\N
68	23368415b7aa7a011749113722	Success	233	FNePu8MAgT	200.00	1	0.00	0.00	\N	2025-06-05 08:55:23	\N	\N
69	23468415da609ee81749114278	Success	234	oqGfaV0TiX	200.00	1	0.00	0.00	\N	2025-06-05 09:04:38	\N	\N
70	23268416c03d6a181749117955	Success	232	KNr4Fm9Bf1	200.00	2	0.00	0.00	\N	2025-06-05 10:05:56	\N	\N
71	2356841784e9e8ca1749121102	Success	235	K2SPG8szcJ	100.00	2	0.00	0.00	\N	2025-06-05 10:58:23	\N	\N
72	23568417860954301749121120	Success	235	ugmf1AEHNC	120.00	2	0.00	0.00	\N	2025-06-05 10:58:41	\N	\N
73	2356841793b60f491749121339	Success	235	T6LbtAlVN7	100.00	2	0.00	0.00	\N	2025-06-05 11:02:19	\N	\N
74	2356841797c319b81749121404	Success	235	bDmIx45rK8	120.00	2	0.00	0.00	\N	2025-06-05 11:03:24	\N	\N
75	23768418777cab331749124983	Success	237	Y1Bq3PgyUT	200.00	1	0.00	0.00	\N	2025-06-05 12:03:04	\N	\N
76	2376841882fcc5671749125167	Success	237	ivwOIm0x2M	200.00	1	0.00	0.00	\N	2025-06-05 12:06:08	\N	\N
77	2376841885e02ece1749125214	Success	237	iKMU3tWwek	200.00	1	0.00	0.00	\N	2025-06-05 12:06:54	\N	\N
78	238684194861a90d1749128326	Success	238	RGBv9zKue2	200.00	1	0.00	0.00	\N	2025-06-05 12:58:46	\N	\N
79	239684262cb9da1a1749181131	Success	239	2dUI4okshE	200.00	1	0.00	0.00	\N	2025-06-06 03:38:52	\N	\N
80	2406842d49661aba1749210262	Success	240	hGmPovqFpn	120.00	1	0.00	0.00	\N	2025-06-06 11:44:22	\N	\N
81	1926842e43ff34da1749214271	Success	192	WaN7xFQBM0	120.00	2	0.00	0.00	\N	2025-06-06 12:51:12	\N	\N
82	1926842e448d51751749214280	Success	192	JbHqtyR8lA	100.00	2	0.00	0.00	\N	2025-06-06 12:51:21	\N	\N
83	24268442b091bd511749297929	Success	242	muvby9aB3M	100.00	1	0.00	0.00	\N	2025-06-07 12:05:29	\N	\N
84	2436846a63a114e91749460538	Success	243	eT2nOCvfh8	175.00	1	0.00	0.00	\N	2025-06-09 09:15:38	\N	\N
85	2446847f8fbc26451749547259	Success	244	ueP2RmTtSC	175.00	1	0.00	0.00	\N	2025-06-10 09:21:00	\N	\N
86	230684939e4ada0a1749629412	Success	230	rduEW3xDRe	120.00	1	0.00	0.00	\N	2025-06-11 08:10:13	\N	\N
87	23068493a03628b91749629443	Success	230	42AvcEW6HC	180.00	2	0.00	0.00	\N	2025-06-11 08:10:43	\N	\N
88	246684952eae30d81749635818	Success	246	m7jre8MknF	175.00	1	0.00	0.00	\N	2025-06-11 09:56:59	\N	\N
89	245684955b3566521749636531	Success	245	q3nM0P8xGB	350.00	1	0.00	0.00	\N	2025-06-11 10:08:51	\N	\N
90	249685fe9200e9bd1751116064	Success	249	q3rxZhbXoO	350.00	1	0.00	0.00	\N	2025-06-28 13:07:44	\N	\N
91	2526870e5d6e5c0b1752229334	Success	252	nthQpPvRX9	350.00	1	0.00	0.00	\N	2025-07-11 10:22:15	\N	\N
92	2546870f48a1cf7c1752233098	Success	254	tdk07ywzDa	350.00	1	0.00	0.00	\N	2025-07-11 11:24:58	\N	\N
93	2556870f94107a451752234305	Success	255	vCSD8Qe1sh	180.00	1	0.00	0.00	\N	2025-07-11 11:45:05	\N	\N
94	258687123e81cb061752245224	Success	258	E8cbP5UeA4	350.00	1	0.00	0.00	\N	2025-07-11 14:47:04	\N	\N
95	2626871f33d739351752298301	Success	262	FTInBkzi6j	180.00	1	0.00	0.00	\N	2025-07-12 05:31:41	\N	\N
96	26368721efe5df7e1752309502	Success	263	v03GbXkK28	350.00	1	0.00	0.00	\N	2025-07-12 08:38:22	\N	\N
97	264687223132210d1752310547	Success	264	f4N13vHnzX	350.00	1	0.00	0.00	\N	2025-07-12 08:55:47	\N	\N
98	26468722433a65d41752310835	Success	264	q8icfbIQh6	350.00	1	0.00	0.00	\N	2025-07-12 09:00:36	\N	\N
99	2646872249b34d9a1752310939	Success	264	Rw92uKNXAQ	350.00	1	0.00	0.00	\N	2025-07-12 09:02:19	\N	\N
100	267687366f0df5901752393456	Success	267	Cu8lo1Oi5n	350.00	1	0.00	0.00	\N	2025-07-13 07:57:37	\N	\N
101	267687368fcee1751752393980	Success	267	9DC3gBKijm	350.00	1	0.00	0.00	\N	2025-07-13 08:06:21	\N	\N
102	267687369312e5c81752394033	Success	267	s7e6rPNkoj	350.00	4	0.00	0.00	\N	2025-07-13 08:07:13	\N	\N
103	2686873942e83c061752405038	Success	268	orgNSQwsH9	350.00	1	0.00	0.00	\N	2025-07-13 11:10:38	\N	\N
104	2696873bbefc52781752415215	Success	269	OTyFsI42le	180.00	1	0.00	0.00	\N	2025-07-13 14:00:16	\N	\N
105	2706873d217379e01752420887	Success	270	NOslqg5vMI	180.00	1	0.00	0.00	\N	2025-07-13 15:34:47	\N	\N
106	2706873d776ab7c31752422262	Success	270	gAkNcI2KFv	350.00	2	0.00	0.00	\N	2025-07-13 15:57:43	\N	\N
107	2716874152e9943f1752438062	Success	271	CJ7LRUfehd	180.00	1	0.00	0.00	\N	2025-07-13 20:21:03	\N	\N
108	27268741f1facc1f1752440607	Success	272	AGT7fPOCEp	350.00	4	0.00	0.00	\N	2025-07-13 21:03:28	\N	\N
109	270687493a6e1eb61752470438	Success	270	O4tKYQHc5l	350.00	1	0.00	0.00	\N	2025-07-14 05:20:39	\N	\N
110	270687493dfc06941752470495	Success	270	c3m8We0OYE	350.00	1	0.00	0.00	\N	2025-07-14 05:21:36	\N	\N
111	270687494600be5b1752470624	Success	270	rVk9jwy7MF	350.00	1	0.00	0.00	\N	2025-07-14 05:23:44	\N	\N
\.


--
-- Data for Name: permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.permissions (id, name, guard_name, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: personal_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.personal_access_tokens (id, tokenable_type, tokenable_id, name, token, abilities, last_used_at, expires_at, created_at, updated_at) FROM stdin;
3	App\\Models\\User	38	Personal Access Token	3cb842ae875cfa4a56a4a9d184b1a7c4293c34c4ccda17c9287d7de72f2c5531	["*"]	\N	\N	2025-04-10 10:21:06	2025-04-10 10:21:06
4	App\\Models\\User	38	Personal Access Token	2574379c0f946be1617958cb8588cc9d27eabf01d554a425c7e91b3bcace25e4	["*"]	\N	\N	2025-04-10 10:21:06	2025-04-10 10:21:06
5	App\\Models\\User	39	Personal Access Token	8cc6b6c55e4c6a86b3c8f08c33be70f42e2fad5fa50e32334e9b206f021511b2	["*"]	\N	\N	2025-04-10 10:36:22	2025-04-10 10:36:22
6	App\\Models\\User	39	Personal Access Token	db8ab694dd7a7015220f3526075ead6153243fe14a25d8b74d21b8c8c623f852	["*"]	\N	\N	2025-04-10 10:36:22	2025-04-10 10:36:22
7	App\\Models\\User	40	Personal Access Token	32c75fb39d8fa04d38c5df3bdd73d59078670ffa70032529dbd64b61a77ff6d0	["*"]	\N	\N	2025-04-10 10:37:18	2025-04-10 10:37:18
8	App\\Models\\User	40	Personal Access Token	ae2f573723683a146d28f15ee5bfbbe1682a0f1e383cc59360b13a7a8393033b	["*"]	\N	\N	2025-04-10 10:37:18	2025-04-10 10:37:18
9	App\\Models\\User	38	Personal Access Token	7dfdc42f1f602b6b479a53004ad7d0491259b068c54a402a8f1ec6f5aadbf400	["*"]	\N	\N	2025-04-12 07:55:38	2025-04-12 07:55:38
23	App\\Models\\User	44	Personal Access Token	b4d5c0a847c0f325d5df6f580a42ce9ca6f563bfefa91796bbb5b50b69133475	["*"]	\N	\N	2025-04-18 11:02:44	2025-04-18 11:02:44
24	App\\Models\\User	44	Personal Access Token	f5f5aedbfd8553c64418270e26b44db4909708ef3377cbfc5e88b76299562b1e	["*"]	\N	\N	2025-04-18 11:02:44	2025-04-18 11:02:44
29	App\\Models\\User	45	Personal Access Token	23fe903d9773c6a0c9a76f4fdf943c1a3f9cb8ecd144e9c9cb759cacde1f600f	["*"]	\N	\N	2025-04-19 09:33:19	2025-04-19 09:33:19
30	App\\Models\\User	45	Personal Access Token	3bafe847bc219bf48df818e9e329fff2a786aee8bc54bf7e0e54249cae4cda2d	["*"]	\N	\N	2025-04-19 09:33:19	2025-04-19 09:33:19
36	App\\Models\\User	42	Personal Access Token	1a2ef0fdadafea179a4b4bc7f343101d77baaf29a8304c2ace8b33b60d8c9bb2	["*"]	\N	\N	2025-04-21 17:59:26	2025-04-21 17:59:26
37	App\\Models\\User	46	Personal Access Token	0555fff9533cfc6e4511169cc60975b1c014eca114762d648a66b0d1c43c7801	["*"]	\N	\N	2025-04-22 06:21:07	2025-04-22 06:21:07
38	App\\Models\\User	46	Personal Access Token	9684336e94c6850f1dacf6452f4acb2906b70b00630ae158fba7e5a351303ca2	["*"]	\N	\N	2025-04-22 06:21:07	2025-04-22 06:21:07
39	App\\Models\\User	37	Personal Access Token	ad785828f194d9b8287398837ca220eee1170987081626f09a2fe9c9af354b73	["*"]	\N	\N	2025-04-22 11:22:06	2025-04-22 11:22:06
42	App\\Models\\User	43	Personal Access Token	227eaff08537411ebf84a268653b5eee1b68f6a86d646e43d2353d8bed97f85e	["*"]	\N	\N	2025-04-23 06:24:49	2025-04-23 06:24:49
43	App\\Models\\User	47	Personal Access Token	54ed9b3a5e04bf8d2ebde914a9ce3ae7f33e9b159581a18cd666901228bd9593	["*"]	\N	\N	2025-04-23 07:41:22	2025-04-23 07:41:22
44	App\\Models\\User	47	Personal Access Token	1b7fc43dcf563d67eaaf1dd4f37a0ceba83b1b26469432981c7f3483ef024a49	["*"]	\N	\N	2025-04-23 07:41:22	2025-04-23 07:41:22
45	App\\Models\\User	41	Personal Access Token	fddbbdc08b8a08f062721b3646036a0abef8c142b1042b8d64378f355710688b	["*"]	\N	\N	2025-04-24 09:14:19	2025-04-24 09:14:19
46	App\\Models\\User	49	Personal Access Token	9f49c4907be22d0a638a123090d70c765bbb702689e6e1402f93a9c8bd3475d1	["*"]	\N	\N	2025-05-19 13:08:48	2025-05-19 13:08:48
47	App\\Models\\User	49	Personal Access Token	8abb4d1ddd6ff8b66da4c2e57153de5312bfc9499f094e24de8c2c2b9d1ca5a3	["*"]	\N	\N	2025-05-19 13:08:51	2025-05-19 13:08:51
48	App\\Models\\User	50	Personal Access Token	8b935a9c7caa2e570263c8a42ed5e6ee4e9d6a62850dcc178c7b0a2c8b18f8cf	["*"]	\N	\N	2025-05-20 07:06:44	2025-05-20 07:06:44
49	App\\Models\\User	50	Personal Access Token	be470cb92b1aa9e5b871481880a33487fa7ff52ee0f28dd6e96104e4f965e490	["*"]	\N	\N	2025-05-20 07:06:47	2025-05-20 07:06:47
50	App\\Models\\User	51	Personal Access Token	485d3bdb0008b573f951297033b83631d6526e35cc08c39987901c55af69ec10	["*"]	\N	\N	2025-05-20 07:08:20	2025-05-20 07:08:20
51	App\\Models\\User	51	Personal Access Token	869b8e9c9969760147502d6b0263729011f15ec209d2fd2b9931dad0b35d6eb1	["*"]	\N	\N	2025-05-20 07:08:23	2025-05-20 07:08:23
52	App\\Models\\User	52	Personal Access Token	c7139638f5dfaa4f2327338de7ff2a037ca690c7f98d411cc1a503b05ea52a7a	["*"]	\N	\N	2025-05-22 05:30:36	2025-05-22 05:30:36
53	App\\Models\\User	52	Personal Access Token	7a39f43be5cae2e7445838cd402c4f84376560a9e9174baaaeb1e2237c07d13a	["*"]	\N	\N	2025-05-22 05:30:36	2025-05-22 05:30:36
54	App\\Models\\User	53	Personal Access Token	dbe991ca0cb5d75ceb2424c7a86f1db2f921d6d996628b25c00808b56f47cc7d	["*"]	\N	\N	2025-05-22 06:30:08	2025-05-22 06:30:08
55	App\\Models\\User	53	Personal Access Token	d6bce21463de2634eab2f81a3e7a5bd9a391fe9cb20987fb3c3ce94b25805218	["*"]	\N	\N	2025-05-22 06:30:08	2025-05-22 06:30:08
56	App\\Models\\User	154	Personal Access Token	c1b34d5270affbbd68303ace2689873a6dd59ed880e0526217617cdd66b1eb8b	["*"]	\N	\N	2025-05-23 13:54:05	2025-05-23 13:54:05
57	App\\Models\\User	154	Personal Access Token	2454fc86b60c08d678fba1c08432960e21a6ad597bf2d4e39beb445386680c6c	["*"]	\N	\N	2025-05-23 13:54:05	2025-05-23 13:54:05
58	App\\Models\\User	155	Personal Access Token	707ec91fb4785a35ad674e58d804f57c992b1e74d0535cdef579bd2322340dc2	["*"]	\N	\N	2025-05-23 18:20:44	2025-05-23 18:20:44
59	App\\Models\\User	155	Personal Access Token	c5d52829dc092bf9b2c73fc3ec4d1c5bbff46a0b63160e831558c7cc5d16a912	["*"]	\N	\N	2025-05-23 18:20:44	2025-05-23 18:20:44
60	App\\Models\\User	156	Personal Access Token	4ba711ee417086ef37072ef604fde686ea147bc78ffecd0770d459b58f22c755	["*"]	\N	\N	2025-05-23 18:24:04	2025-05-23 18:24:04
61	App\\Models\\User	156	Personal Access Token	963cf269d3bbbd8972db0a932500c22065ff69b2dbddde2b431ae63cedbb1b9f	["*"]	\N	\N	2025-05-23 18:24:04	2025-05-23 18:24:04
62	App\\Models\\User	157	Personal Access Token	12e7651db251999f0ac732d0dc07f136ea35264397ecb7711e92ad095022ced6	["*"]	\N	\N	2025-05-23 21:35:48	2025-05-23 21:35:48
63	App\\Models\\User	157	Personal Access Token	37934dc921d5b1f42c9cb2107db38459a41bf657733d42092812382fc8af2b79	["*"]	\N	\N	2025-05-23 21:35:48	2025-05-23 21:35:48
64	App\\Models\\User	158	Personal Access Token	b9c64551bc0f0baab6a3031b8c171f4a291136fdcdc8952ca9a5961e3ba5c65f	["*"]	\N	\N	2025-05-24 07:45:47	2025-05-24 07:45:47
65	App\\Models\\User	158	Personal Access Token	8316ebbd3fc03a093001507442b63adffe25fceb452d91faaa0e5d667f0e5ae5	["*"]	\N	\N	2025-05-24 07:45:47	2025-05-24 07:45:47
66	App\\Models\\User	161	Personal Access Token	d5377a8797577d06a4e5649b0a4c678ad7112bad0afe010db795f1697df70410	["*"]	\N	\N	2025-05-26 09:53:26	2025-05-26 09:53:26
67	App\\Models\\User	161	Personal Access Token	fd48e6c0d55c4c598413fd07478428268a43aae6a0de944e649252ae597651a0	["*"]	\N	\N	2025-05-26 09:53:26	2025-05-26 09:53:26
68	App\\Models\\User	162	Personal Access Token	017e265af95937aeb18c86c1242c8a4a2d6bbe0093c42af94c875bbeec77aa64	["*"]	\N	\N	2025-05-26 20:26:37	2025-05-26 20:26:37
69	App\\Models\\User	163	Personal Access Token	380737ec6d21430e94a67c072a479104a27bb5588a97549d0a17c6ed424085b4	["*"]	\N	\N	2025-05-26 22:28:07	2025-05-26 22:28:07
70	App\\Models\\User	163	Personal Access Token	2bb25f0eb4deac22cf32898fb10968291b58c45d095a3a5c2da58a1bbe178771	["*"]	\N	\N	2025-05-26 22:28:17	2025-05-26 22:28:17
71	App\\Models\\User	164	Personal Access Token	064fff7edac61012044b4dd8bb8c4a94004210f20a2d2ebdcbe70e8150b347b6	["*"]	\N	\N	2025-05-27 04:42:09	2025-05-27 04:42:09
72	App\\Models\\User	165	Personal Access Token	6e58839f8323885aaaec8b451ce2f2480458a5bc94040de77b2d22691c8b3a8b	["*"]	\N	\N	2025-05-27 04:52:40	2025-05-27 04:52:40
73	App\\Models\\User	165	Personal Access Token	aa6576090946151ce40f9b8449523c6a2c37c8cf605abab926ec8418dec40d22	["*"]	\N	\N	2025-05-27 04:54:25	2025-05-27 04:54:25
74	App\\Models\\User	165	Personal Access Token	4d99c51df924e40769bcb0ab80e637790986a69c1ebe3038e85669aaf5a1ef1c	["*"]	\N	\N	2025-05-27 04:54:29	2025-05-27 04:54:29
75	App\\Models\\User	166	Personal Access Token	57ede02136aecc35d1935506c287c40c65831afc28f4e2843e607a8fffdbf893	["*"]	\N	\N	2025-05-27 05:03:03	2025-05-27 05:03:03
76	App\\Models\\User	166	Personal Access Token	fcfb7a50009b069c7b571af87a6e4e6531c64ec3385078cead134480652105d2	["*"]	\N	\N	2025-05-27 05:03:07	2025-05-27 05:03:07
77	App\\Models\\User	168	Personal Access Token	795cc7cf24ff2c2261c72c56972595d4dec1a037bcd7235f492bb2dd705ce3c5	["*"]	\N	\N	2025-05-27 05:09:50	2025-05-27 05:09:50
78	App\\Models\\User	168	Personal Access Token	73a505e0d00336092696e0638faa99b5952f7eecea1288b49e8dcf7a788da5d1	["*"]	\N	\N	2025-05-27 05:09:54	2025-05-27 05:09:54
79	App\\Models\\User	169	Personal Access Token	b8dd8146e6cd2cd9ba419a0deb4bace5786938b61c2a27e77450c6af91ba0a34	["*"]	\N	\N	2025-05-27 05:15:33	2025-05-27 05:15:33
80	App\\Models\\User	169	Personal Access Token	c36f493a3882db6d96644cb4097a5746b36249c0214c51d1917c8750569e3ccd	["*"]	\N	\N	2025-05-27 05:15:37	2025-05-27 05:15:37
81	App\\Models\\User	170	Personal Access Token	67775e019c496aa97455cf1029eed6f1b927910b260db06bc65570075dcef710	["*"]	\N	\N	2025-05-27 05:42:18	2025-05-27 05:42:18
82	App\\Models\\User	170	Personal Access Token	fd348f3d209c35e9fbbdc986bc096a26fb9c6c7713b52828fd5eeda60291e750	["*"]	\N	\N	2025-05-27 05:42:22	2025-05-27 05:42:22
83	App\\Models\\User	171	Personal Access Token	948273f834eedb1d0532e51f18e3a7484921aaa935d4a6093d7a951c3479a428	["*"]	\N	\N	2025-05-27 05:53:43	2025-05-27 05:53:43
84	App\\Models\\User	171	Personal Access Token	9585e5b905e7cdfb0eb5e99665e60d4ce2c46a4fa9376529c81fb526c36d1056	["*"]	\N	\N	2025-05-27 05:53:47	2025-05-27 05:53:47
85	App\\Models\\User	172	Personal Access Token	dbda96b6d3fee95832bc29baa697e7a00f8b67226916654937635b174c78e784	["*"]	\N	\N	2025-05-27 06:46:12	2025-05-27 06:46:12
86	App\\Models\\User	172	Personal Access Token	272007ad572d820328d8c9d65d1499a5726fce5e20773f8abbfa1b75b89ed0eb	["*"]	\N	\N	2025-05-27 06:46:16	2025-05-27 06:46:16
87	App\\Models\\User	173	Personal Access Token	42da7dcf974cb71cc09fd88d1146a9812722f8b9b0e53f3fcfdb263d628cda71	["*"]	\N	\N	2025-05-27 07:02:34	2025-05-27 07:02:34
88	App\\Models\\User	173	Personal Access Token	633a1267603f98ef4bcedefd0bab05eb8f0912befda4b454cbe1b03f9c00bb6b	["*"]	\N	\N	2025-05-27 07:02:38	2025-05-27 07:02:38
89	App\\Models\\User	174	Personal Access Token	a283702786a137531a5589524e70a01bb9491dffcf19e35ba64cd9f4c415c29f	["*"]	\N	\N	2025-05-27 08:15:06	2025-05-27 08:15:06
90	App\\Models\\User	174	Personal Access Token	e0b71a409786e521789b13fa5e9141f6960ae2ee0a555e958bcc67ff710df9d2	["*"]	\N	\N	2025-05-27 08:15:10	2025-05-27 08:15:10
91	App\\Models\\User	175	Personal Access Token	08e65e2f2eb7de2cda6349d34c0d8f328b39445fba4392339d58a6886b1ae132	["*"]	\N	\N	2025-05-27 08:31:31	2025-05-27 08:31:31
92	App\\Models\\User	175	Personal Access Token	04211fd8f966b0f35c3529b619eae808e60e98a0f48835cf8af72554c0b7cb72	["*"]	\N	\N	2025-05-27 08:31:36	2025-05-27 08:31:36
93	App\\Models\\User	176	Personal Access Token	9914d7c6f39b5c0f603f75b369353795cecd61b747a214b55e50a76417194b97	["*"]	\N	\N	2025-05-27 08:44:19	2025-05-27 08:44:19
94	App\\Models\\User	176	Personal Access Token	955789b1f0a175afb5f7ac498d17bf7a8a6b904482c93fd24e19d15c0bb75b98	["*"]	\N	\N	2025-05-27 08:44:23	2025-05-27 08:44:23
95	App\\Models\\User	177	Personal Access Token	d8cf0064f551dfe6ed0b3811f023c371ad01b0bcf7d2cefb59ca587bfede4eda	["*"]	\N	\N	2025-05-27 12:23:10	2025-05-27 12:23:10
96	App\\Models\\User	177	Personal Access Token	46be1f95dcc59a924d563eb0217a6bd78b8b71b16e1a4b9310f13393bbe7fc2e	["*"]	\N	\N	2025-05-27 12:23:14	2025-05-27 12:23:14
97	App\\Models\\User	178	Personal Access Token	a4f8da4e8ddea8aa71b7fe323b9baea96a824ee912235c8e7a15be2dd6c2e1aa	["*"]	\N	\N	2025-05-27 12:45:50	2025-05-27 12:45:50
98	App\\Models\\User	178	Personal Access Token	94f6931e64b594e7fae18fea45ac982599a165b49b129037ee48ed3b6d03e6ba	["*"]	\N	\N	2025-05-27 12:45:57	2025-05-27 12:45:57
99	App\\Models\\User	179	Personal Access Token	11346566042c884ff0d7379a7f68d7f71e33bbcea56b05abedf5998a48335c04	["*"]	\N	\N	2025-05-27 13:24:56	2025-05-27 13:24:56
100	App\\Models\\User	179	Personal Access Token	35c34898c426e68f71c7213823074a2306364b65021ce91b2eecefe7d6c8da8d	["*"]	\N	\N	2025-05-27 13:25:03	2025-05-27 13:25:03
101	App\\Models\\User	180	Personal Access Token	3d0def24ccefe02b5d12390082369e36f4cc43c79b6fe1914381baebf419af8f	["*"]	\N	\N	2025-05-27 17:39:44	2025-05-27 17:39:44
102	App\\Models\\User	180	Personal Access Token	687d6c50e8f71185590f80d12d005bf4fd84006a8e2cb850208480bde8a2714a	["*"]	\N	\N	2025-05-27 17:39:51	2025-05-27 17:39:51
103	App\\Models\\User	181	Personal Access Token	e8765ac396a90c4b6740cfb08aca3f61ad00250f4d0c6aeae05e7ce839451caa	["*"]	\N	\N	2025-05-27 18:16:10	2025-05-27 18:16:10
104	App\\Models\\User	181	Personal Access Token	dba4463c1ef772d702379e653b833c2b448a458bb53eb3ed2ba8beff2ada3476	["*"]	\N	\N	2025-05-27 18:16:18	2025-05-27 18:16:18
105	App\\Models\\User	182	Personal Access Token	fea88666503885dcabdb01202ae42f84c8e67c58c64f516a6be8c770cb3b47ec	["*"]	\N	\N	2025-05-28 05:04:49	2025-05-28 05:04:49
106	App\\Models\\User	182	Personal Access Token	f5f76faeb315262baec9dc78f32004d4e474c9938049320efc8aaa9b97319744	["*"]	\N	\N	2025-05-28 05:04:56	2025-05-28 05:04:56
107	App\\Models\\User	183	Personal Access Token	8ea57cbf3c60ab6bd034e6b8278b224c8afb228ad65ecf5b14aa9684cdb6cae8	["*"]	\N	\N	2025-05-28 06:09:29	2025-05-28 06:09:29
108	App\\Models\\User	183	Personal Access Token	ec0523becd61c3f1bbde65a877f041597dae7acdfc29b60b227ae7e7021f36fd	["*"]	\N	\N	2025-05-28 06:09:37	2025-05-28 06:09:37
109	App\\Models\\User	184	Personal Access Token	06ebcf80b47836011530e4f731ebdbcbc279655dd83c78c0e1e1d12c1316da01	["*"]	\N	\N	2025-05-28 06:47:16	2025-05-28 06:47:16
110	App\\Models\\User	184	Personal Access Token	718e80675d31afadc51b81f4b15ecbfb00337f2e226f5100007d9a98dacb1390	["*"]	\N	\N	2025-05-28 06:47:42	2025-05-28 06:47:42
111	App\\Models\\User	184	Personal Access Token	be57af2174ab142657222a4af2ff71ebb5b28e7c622bcc9ee59da96c262b93c9	["*"]	\N	\N	2025-05-28 06:48:05	2025-05-28 06:48:05
112	App\\Models\\User	91	Personal Access Token	efe28249c10038ea7bc501f8a40d0e41aec1025bc72744c8cd926341a12ce152	["*"]	\N	\N	2025-05-28 09:45:04	2025-05-28 09:45:04
113	App\\Models\\User	185	Personal Access Token	2ddfdbf8dc6136fa2443e5d429418893bb96eba62e1e592489aef2b0cfee9ec6	["*"]	\N	\N	2025-05-28 09:59:03	2025-05-28 09:59:03
114	App\\Models\\User	185	Personal Access Token	adfd2d4d886fb6fd41dcefd64bcde8753139640511b026ebe9c8beaaff97e6e7	["*"]	\N	\N	2025-05-28 09:59:07	2025-05-28 09:59:07
115	App\\Models\\User	186	Personal Access Token	34c0f469511f3744560f41b27a26e45805fd4d8e45998cafd81b164a79a72ea4	["*"]	\N	\N	2025-05-28 10:03:47	2025-05-28 10:03:47
116	App\\Models\\User	186	Personal Access Token	81d502b1ac50ff2e749f7e83b96a4dd9ac7902d29d7efd83be45963c1490f00f	["*"]	\N	\N	2025-05-28 10:03:51	2025-05-28 10:03:51
117	App\\Models\\User	187	Personal Access Token	1ee6cf737adc76f418da1bdfad40305de1dbc2f96d232ea074c4804b60cdc136	["*"]	\N	\N	2025-05-28 17:28:00	2025-05-28 17:28:00
118	App\\Models\\User	187	Personal Access Token	d3b985ebaef2745f858ebe2f3a31d95c68e5800f06097100960e580edf2380bb	["*"]	\N	\N	2025-05-28 17:28:05	2025-05-28 17:28:05
119	App\\Models\\User	188	Personal Access Token	d64677f3f7b3640ebdc959c8667cb28170328f5ba87ac6f4a94bb1383bb3888b	["*"]	\N	\N	2025-05-28 17:36:48	2025-05-28 17:36:48
120	App\\Models\\User	188	Personal Access Token	ee7ccb9bcd159bb0ea8bc36652f765135d477beb908973d88023e5ce9b4844db	["*"]	\N	\N	2025-05-28 17:36:52	2025-05-28 17:36:52
121	App\\Models\\User	189	Personal Access Token	77422946f22ec6de0088e51c2aaa8f62834171cb5c1a51ec26eaa56a46aa61ef	["*"]	\N	\N	2025-05-28 17:39:51	2025-05-28 17:39:51
122	App\\Models\\User	189	Personal Access Token	a5085175e44904c01d5c1d5346fe91d12a427299d4ef39e95c3e9ab071641641	["*"]	\N	\N	2025-05-28 17:39:55	2025-05-28 17:39:55
123	App\\Models\\User	190	Personal Access Token	e02d61c5feafa0539316784466ecf8455e78b1c985476eea31c48a83f212bae5	["*"]	\N	\N	2025-05-28 17:43:31	2025-05-28 17:43:31
124	App\\Models\\User	190	Personal Access Token	931ef45ac1b99305a1d9a93707708d852eb7e57c60c356fab09c2982c43f5c04	["*"]	\N	\N	2025-05-28 17:43:35	2025-05-28 17:43:35
125	App\\Models\\User	191	Personal Access Token	eb571827b83af84b7768c2c88e3c4699ac2702119306988af930d4f7569a833b	["*"]	\N	\N	2025-05-28 17:51:05	2025-05-28 17:51:05
126	App\\Models\\User	191	Personal Access Token	19daebf028a169027212e5d8f0fadb46be4c9e5491c7d741eb071d6f69945722	["*"]	\N	\N	2025-05-28 17:51:09	2025-05-28 17:51:09
127	App\\Models\\User	192	Personal Access Token	014c841d7d91702b9657c667895e52f930f4942ce75f1291a2ae6abd51855c83	["*"]	\N	\N	2025-05-28 17:53:13	2025-05-28 17:53:13
128	App\\Models\\User	192	Personal Access Token	13f0a28263dac3057cc002f6079ba7b1c48d4049ec4d63163190510329fcc3e6	["*"]	\N	\N	2025-05-28 17:53:18	2025-05-28 17:53:18
129	App\\Models\\User	193	Personal Access Token	212598d417f098140efef83de2877b8c8c84283b8ff5782bda0f6f5e761bf71f	["*"]	\N	\N	2025-05-29 07:13:26	2025-05-29 07:13:26
130	App\\Models\\User	193	Personal Access Token	456e79019d70d449702f3850fa647a4bbb5d581e03986d494e88d35069a65d07	["*"]	\N	\N	2025-05-29 07:13:30	2025-05-29 07:13:30
131	App\\Models\\User	194	Personal Access Token	394bbc004a04a71c4c054b98d492ea016896b4befda9053c84f70d2de32b7e19	["*"]	\N	\N	2025-05-29 08:07:31	2025-05-29 08:07:31
132	App\\Models\\User	194	Personal Access Token	f768b89b2ac75a561d64c365f9c0cb77e5c4222884755a14d38445f655d80098	["*"]	\N	\N	2025-05-29 08:07:35	2025-05-29 08:07:35
133	App\\Models\\User	195	Personal Access Token	afb4c0192b8e6fe35232461bb5a610579185ed4ce3814e9a1ff7582da10b2825	["*"]	\N	\N	2025-05-29 08:17:16	2025-05-29 08:17:16
134	App\\Models\\User	195	Personal Access Token	b015b15d84c2b9f8d7b116653f474d3fcea2d0f0ae014267fa1d8a499b64daca	["*"]	\N	\N	2025-05-29 08:17:20	2025-05-29 08:17:20
135	App\\Models\\User	196	Personal Access Token	a58a8dc6471ccd88f7523616b92ff1a3b970e010c1f6f1d1bf41515738404340	["*"]	\N	\N	2025-05-29 08:36:27	2025-05-29 08:36:27
136	App\\Models\\User	196	Personal Access Token	93a96d5be6f865f5f25615afaf764be984744962daf39747bd5ffbfa3f524218	["*"]	\N	\N	2025-05-29 08:36:32	2025-05-29 08:36:32
137	App\\Models\\User	197	Personal Access Token	aa2bd11d79c70b18e62129203b7f6e400c389a3cfea7d08264d9ca1bf3fe30b4	["*"]	\N	\N	2025-05-29 17:23:31	2025-05-29 17:23:31
138	App\\Models\\User	197	Personal Access Token	225f1e40da9ca8fce68408c65cee11753c6a8a2713ae9d38ae1cd5d31d18e202	["*"]	\N	\N	2025-05-29 17:23:34	2025-05-29 17:23:34
139	App\\Models\\User	198	Personal Access Token	b5cd9f506a20030489472db5122957debcc2f118c8db9b72919b5cef9f6c6eff	["*"]	\N	\N	2025-05-29 17:28:49	2025-05-29 17:28:49
140	App\\Models\\User	198	Personal Access Token	7553e43adf821f7b6c7c3b22b8949246c5c7e2b2e7fb7a207882904173b8f296	["*"]	\N	\N	2025-05-29 17:28:52	2025-05-29 17:28:52
141	App\\Models\\User	199	Personal Access Token	c314be3b9d4a9e63535d367b1f2d8f7654336f718193ac5867ee8b91c4a0c673	["*"]	\N	\N	2025-05-30 10:52:09	2025-05-30 10:52:09
142	App\\Models\\User	199	Personal Access Token	9eafa152177f83126315945689e55d5440c3515b0a7625265c3ec6cde1475e6e	["*"]	\N	\N	2025-05-30 10:52:12	2025-05-30 10:52:12
143	App\\Models\\User	200	Personal Access Token	5a64dd3da27d63cf13904917c2f1f4a5362017e65aa4d775893efd72bae14087	["*"]	\N	\N	2025-05-30 11:24:09	2025-05-30 11:24:09
144	App\\Models\\User	200	Personal Access Token	aeb8e31ea9dcf1a73408d2fa35ea9f02eed10fb1a534672c219ab7ca21020ce4	["*"]	\N	\N	2025-05-30 11:24:12	2025-05-30 11:24:12
145	App\\Models\\User	201	Personal Access Token	69b18a1fa89c6dd1884bfde002483df728a73e767a7aa618d2b4a505776b56a8	["*"]	\N	\N	2025-05-30 11:34:19	2025-05-30 11:34:19
146	App\\Models\\User	201	Personal Access Token	a94cf14a20ca297580a9620faa2273ee8892333d49349aac7e74989416832a39	["*"]	\N	\N	2025-05-30 11:34:22	2025-05-30 11:34:22
147	App\\Models\\User	202	Personal Access Token	d6c8f6170ba2fda81e3d43a4972e4463bda99b95bd82abe8e8fa40bd795113d2	["*"]	\N	\N	2025-05-30 12:28:12	2025-05-30 12:28:12
148	App\\Models\\User	202	Personal Access Token	1ef6fa818afd142acd6abfa1529354ea2bf4ba6c9e3dfd5814877d390d5e1302	["*"]	\N	\N	2025-05-30 12:28:15	2025-05-30 12:28:15
149	App\\Models\\User	203	Personal Access Token	c179f230a34c002503ce1e0c71967213cac0f791429a49a24f60cdbf0f416445	["*"]	\N	\N	2025-05-30 12:31:18	2025-05-30 12:31:18
150	App\\Models\\User	203	Personal Access Token	057bb71ce386081ecbe63228570bb12380057422193ea108a63a8fc2fa4f8632	["*"]	\N	\N	2025-05-30 12:31:20	2025-05-30 12:31:20
151	App\\Models\\User	204	Personal Access Token	9185d11dd3bb5872901fbf6fccc0257666816e309654b7d2a88260ce27314cb7	["*"]	\N	\N	2025-05-30 13:37:10	2025-05-30 13:37:10
152	App\\Models\\User	204	Personal Access Token	4bb53179d9c6d1bc3272dcc0efa2ba95198cc23b55246b59ef69110312712c47	["*"]	\N	\N	2025-05-30 13:42:22	2025-05-30 13:42:22
153	App\\Models\\User	204	Personal Access Token	693ec84ad949f41664eeef179db267175029e1a40047dfa9fb1c111dd129e2cf	["*"]	\N	\N	2025-05-30 13:42:24	2025-05-30 13:42:24
154	App\\Models\\User	205	Personal Access Token	b5cf6ac74739da5a0955bb7712b3f8742f30abfa7959ec2f094157ed996d3b03	["*"]	\N	\N	2025-05-30 14:00:15	2025-05-30 14:00:15
155	App\\Models\\User	205	Personal Access Token	ae421555b9cd6ac403f2dc887bd4c90906c464c70dda956d87199bcc7c23b7bd	["*"]	\N	\N	2025-05-30 14:00:17	2025-05-30 14:00:17
156	App\\Models\\User	206	Personal Access Token	31284616d1ac0a2621f786c1b47d67650013bbfdd733e8cad56f82f0ba700025	["*"]	\N	\N	2025-05-30 14:02:36	2025-05-30 14:02:36
157	App\\Models\\User	207	Personal Access Token	9d9d6eb90d76c1b1ed93064ce39595d35bb16ec185e1bcf9431a1c0756133da8	["*"]	\N	\N	2025-05-30 14:05:10	2025-05-30 14:05:10
158	App\\Models\\User	208	Personal Access Token	e75539f95e4d5b70132dc01444642551be91ca9707da9d64f4c69c786b342635	["*"]	\N	\N	2025-05-30 14:18:33	2025-05-30 14:18:33
159	App\\Models\\User	208	Personal Access Token	2bf39b1c68d951c2993654c40dbeeee30ffa22d286c035735ffafc1f7952df54	["*"]	\N	\N	2025-05-30 14:18:36	2025-05-30 14:18:36
160	App\\Models\\User	209	Personal Access Token	568859d7c1571e9f0c318a9fcc49e33afd9a34cd6795f0bfe9ede1b291fe2279	["*"]	\N	\N	2025-05-31 09:08:40	2025-05-31 09:08:40
161	App\\Models\\User	209	Personal Access Token	fda5e9e0feb6cd628c0c76bbeab7cb702aa52af4be5922e98c02dd6a9280092b	["*"]	\N	\N	2025-05-31 09:08:45	2025-05-31 09:08:45
162	App\\Models\\User	210	Personal Access Token	b2bf44bdc640c17b2d32dd85f2202bcfd8ce97552fcba653b32a4567de645486	["*"]	\N	\N	2025-05-31 15:02:31	2025-05-31 15:02:31
163	App\\Models\\User	210	Personal Access Token	f7653f637a02575237e8af3fa1ba62c7630af63511a96141d7cd78e4614e12eb	["*"]	\N	\N	2025-05-31 15:02:36	2025-05-31 15:02:36
164	App\\Models\\User	211	Personal Access Token	fb0e60d6854fd90f9f255d959e6c12eb9b3c27f67a5252aa826034267b32df95	["*"]	\N	\N	2025-05-31 16:42:24	2025-05-31 16:42:24
165	App\\Models\\User	211	Personal Access Token	aa03c31b60b427feb17142a4fb55efe2370a566fe6c350614b3b6f2a5a07532f	["*"]	\N	\N	2025-05-31 16:42:29	2025-05-31 16:42:29
166	App\\Models\\User	212	Personal Access Token	efa5bb183bf722fa0bc56f88895fa22858da32c0dbe6150fc6c4d92a713f484d	["*"]	\N	\N	2025-06-01 17:22:19	2025-06-01 17:22:19
167	App\\Models\\User	212	Personal Access Token	35ef1a9a6d0e64ef0ba8cfd536114917b7376967a977539fe5c42e3d9f70e32d	["*"]	\N	\N	2025-06-01 17:22:24	2025-06-01 17:22:24
168	App\\Models\\User	213	Personal Access Token	072a67e51e3adfec3a5c9fd47066b2d8d051994b55c8a0c6923d61d679251b83	["*"]	\N	\N	2025-06-03 03:03:02	2025-06-03 03:03:02
169	App\\Models\\User	213	Personal Access Token	f13bfe0e1152a7053ede790cb122ea4a37c564ae888e69b54136169669529b1f	["*"]	\N	\N	2025-06-03 03:03:06	2025-06-03 03:03:06
170	App\\Models\\User	214	Personal Access Token	61cce38608b626b3cefae22c61de68dca0b79c6c3ea3d563faae36a35e1dfcab	["*"]	\N	\N	2025-06-03 03:21:26	2025-06-03 03:21:26
171	App\\Models\\User	214	Personal Access Token	7c454085faae36c4c92d04635ea33c67440abe7d7ba385b00205f62b4a4b76a6	["*"]	\N	\N	2025-06-03 03:21:31	2025-06-03 03:21:31
172	App\\Models\\User	215	Personal Access Token	a1ae6371fb4407a5a4d60b589e86c0bb69e8a92a17c7c53986cf76332df0b54f	["*"]	\N	\N	2025-06-03 05:21:54	2025-06-03 05:21:54
173	App\\Models\\User	215	Personal Access Token	7c7057e1d2ff3405e1a515c2ae111e1d5dd3b3a71b6114f35359f182d29d1058	["*"]	\N	\N	2025-06-03 05:21:58	2025-06-03 05:21:58
174	App\\Models\\User	216	Personal Access Token	d61edaa214be834db1cec8ce37b4c650bba035a5dd3a22403080b843d6a394ce	["*"]	\N	\N	2025-06-03 08:33:39	2025-06-03 08:33:39
175	App\\Models\\User	216	Personal Access Token	cad5832fe8c103d5acf22f1d5410cc73f392da822f36e616daea7deafc91e4f9	["*"]	\N	\N	2025-06-03 08:33:43	2025-06-03 08:33:43
176	App\\Models\\User	217	Personal Access Token	c487fda6697957963a95b062164f1b849d37d1ed16c10d4a290edadeed5bd516	["*"]	\N	\N	2025-06-03 13:20:23	2025-06-03 13:20:23
177	App\\Models\\User	217	Personal Access Token	dcb96635340e0120988785b01bc4508408037bdc97a2fd733b2dd0f3c5fcfa27	["*"]	\N	\N	2025-06-03 13:20:28	2025-06-03 13:20:28
178	App\\Models\\User	218	Personal Access Token	3a3e158ca3f212b45c2f18bfa2bdf961bd053251171a8e8548b9d1d9876eeada	["*"]	\N	\N	2025-06-03 13:25:31	2025-06-03 13:25:31
179	App\\Models\\User	218	Personal Access Token	bc249b91f2baa0f0f8e74b8da4ae4ca5be59059d669d7effc3cb0b1a626dce2c	["*"]	\N	\N	2025-06-03 13:25:36	2025-06-03 13:25:36
180	App\\Models\\User	219	Personal Access Token	02ad048aeb95f8953e30a3bbc8301d381a0de172fb303786e1a3e0ab2941419b	["*"]	\N	\N	2025-06-04 06:45:50	2025-06-04 06:45:50
181	App\\Models\\User	219	Personal Access Token	d5c3e79073f3474fb12744222f7d8bc0733f799b7381650fcc98eccea6d3799c	["*"]	\N	\N	2025-06-04 06:45:55	2025-06-04 06:45:55
182	App\\Models\\User	220	Personal Access Token	3ae352b151ee54850bdcf67a2b3c6bdf22bfb8f896096f16b9dad7d5e378a8ed	["*"]	\N	\N	2025-06-04 07:07:31	2025-06-04 07:07:31
183	App\\Models\\User	220	Personal Access Token	89ad097d3fb70900fcae15a3c582eb33708385c08ec790fed4c05d5ccede2f82	["*"]	\N	\N	2025-06-04 07:07:35	2025-06-04 07:07:35
184	App\\Models\\User	221	Personal Access Token	c258ea92ec75cc875860c73f71288110516ac68307151796212dc88e34a9cacb	["*"]	\N	\N	2025-06-04 07:21:52	2025-06-04 07:21:52
185	App\\Models\\User	221	Personal Access Token	71947f8492ec7409620e097fe0f1a0e12e603394436a14f01577b585d14cf0bf	["*"]	\N	\N	2025-06-04 07:21:57	2025-06-04 07:21:57
186	App\\Models\\User	222	Personal Access Token	fa3ee5a929b35e3ab0e745e9d89ac5a7fcb2ac42c2ef74bd6540873c5ac642ee	["*"]	\N	\N	2025-06-04 07:39:03	2025-06-04 07:39:03
187	App\\Models\\User	222	Personal Access Token	70c5de27bba9643170d9ebc90cc945808c4c5ce35c8a2ac686fde28d3ec903ec	["*"]	\N	\N	2025-06-04 07:39:07	2025-06-04 07:39:07
188	App\\Models\\User	223	Personal Access Token	c9c31b1d0ed7491da582ba24e3160421585df7791262fccb18b3d57e3a10eaae	["*"]	\N	\N	2025-06-04 07:39:50	2025-06-04 07:39:50
189	App\\Models\\User	223	Personal Access Token	a0a5a3cad91dc0e7758ef4c6b21cc954170fb21e9271c057a27de1ed6f79c81e	["*"]	\N	\N	2025-06-04 07:39:54	2025-06-04 07:39:54
190	App\\Models\\User	224	Personal Access Token	9797fd97611f4c7e35313b3d62bcd93f5ef1a226b979ba9c74fce350ea34921f	["*"]	\N	\N	2025-06-04 07:57:14	2025-06-04 07:57:14
191	App\\Models\\User	224	Personal Access Token	ba1fe450c109ac19b0b3e30faa73b21014e352830f86b3d73ff9648f1e3819a2	["*"]	\N	\N	2025-06-04 07:57:18	2025-06-04 07:57:18
192	App\\Models\\User	225	Personal Access Token	e17883b6baadbf180e6311c78f6bd5b31a89814841031f45db72f0cccab690c7	["*"]	\N	\N	2025-06-04 08:22:58	2025-06-04 08:22:58
193	App\\Models\\User	225	Personal Access Token	9802d286226449ecf28a03943a570238ce77e9c9be4c042cd0c3a520895ee6ea	["*"]	\N	\N	2025-06-04 08:23:02	2025-06-04 08:23:02
194	App\\Models\\User	226	Personal Access Token	b29ebc9598b316844ff510dc2a7cc1b8a2d9ab5a4e76b5b2cdc934f295990620	["*"]	\N	\N	2025-06-04 12:13:01	2025-06-04 12:13:01
195	App\\Models\\User	226	Personal Access Token	5121ebcf9704967ea9442c535a6cf2c010ea7205883dfce92b99f0787e1b80b5	["*"]	\N	\N	2025-06-04 12:13:07	2025-06-04 12:13:07
196	App\\Models\\User	227	Personal Access Token	d33dd3a6a85682080eb5d89e8c36fe70056c0f017812c5c06cfa245e2cf6002e	["*"]	\N	\N	2025-06-04 16:55:03	2025-06-04 16:55:03
197	App\\Models\\User	227	Personal Access Token	a3778af7e31024657f0488a906ec9fd2e6f6e7e61945114454bfd10ffa54e587	["*"]	\N	\N	2025-06-04 16:55:07	2025-06-04 16:55:07
198	App\\Models\\User	228	Personal Access Token	6c1b4391b37f7eac7e3a64a4db3dd223bbf0a5ee335fdc2533bf32ed54a5bbff	["*"]	\N	\N	2025-06-05 06:21:47	2025-06-05 06:21:47
199	App\\Models\\User	228	Personal Access Token	3d24a3d840c865f55933272e3c7b7fd892ecf1483e83db344978b67dd5345e0e	["*"]	\N	\N	2025-06-05 06:21:51	2025-06-05 06:21:51
200	App\\Models\\User	229	Personal Access Token	4584c670b22e4b7ead0f90c525e0e2e63db30e0826dbc461757f14116a474061	["*"]	\N	\N	2025-06-05 06:25:14	2025-06-05 06:25:14
201	App\\Models\\User	229	Personal Access Token	fe9d126dc11737bc7fd9dc14d97e233a91e4acd7fabcd794dea8a59cc363a791	["*"]	\N	\N	2025-06-05 06:25:18	2025-06-05 06:25:18
202	App\\Models\\User	230	Personal Access Token	55b8a305f44d77d205104ddf8e302f25bf6385c612c3e501e87d3893ce71984d	["*"]	\N	\N	2025-06-05 07:01:06	2025-06-05 07:01:06
203	App\\Models\\User	230	Personal Access Token	063e28b6cfa6732b9b2091252adf56b12d5c7f6c6610e9ef133a3e2f9f8ae5c4	["*"]	\N	\N	2025-06-05 07:01:11	2025-06-05 07:01:11
204	App\\Models\\User	231	Personal Access Token	a0234d2316098279f8eeef21d943c318b9e7acf6fea46cb8a86a8f662d17dccd	["*"]	\N	\N	2025-06-05 07:45:09	2025-06-05 07:45:09
205	App\\Models\\User	231	Personal Access Token	c81f891cb88bab315f25e47bc77193c461f5d5a6d8f5dd70d2452690caa2eefe	["*"]	\N	\N	2025-06-05 07:45:13	2025-06-05 07:45:13
206	App\\Models\\User	232	Personal Access Token	ef1af684bd14cdcfbe811e96cf96de4145132c72e0607368c55fae57cc15480d	["*"]	\N	\N	2025-06-05 08:06:47	2025-06-05 08:06:47
207	App\\Models\\User	232	Personal Access Token	94f3f291da04d60641cf3dc75ee3be128166a55121664f9381344b5898f07c74	["*"]	\N	\N	2025-06-05 08:06:52	2025-06-05 08:06:52
208	App\\Models\\User	233	Personal Access Token	136f2c7700f6d13510672f7c419b91778f76b686000349eb37fbf4499580ce3b	["*"]	\N	\N	2025-06-05 08:52:49	2025-06-05 08:52:49
209	App\\Models\\User	233	Personal Access Token	b1b4f9e1da3fd4d3263869c90a76a476e8d52789d0745f4fbd13223f0f0a7171	["*"]	\N	\N	2025-06-05 08:52:54	2025-06-05 08:52:54
210	App\\Models\\User	234	Personal Access Token	04e7c2fe99a1f6a45f60e90983f290dd29ba5aaecc289979b8b42d1db3848892	["*"]	\N	\N	2025-06-05 09:02:52	2025-06-05 09:02:52
211	App\\Models\\User	234	Personal Access Token	eac0a1a870a281d3c5a78bae9ce96b833e74930c9788bacf422ca3820c94bfed	["*"]	\N	\N	2025-06-05 09:02:56	2025-06-05 09:02:56
212	App\\Models\\User	236	Personal Access Token	4f1161c34ccaeaa0a943241843ee61e98ce38efb2cf47623041b146d28745129	["*"]	\N	\N	2025-06-05 10:21:01	2025-06-05 10:21:01
213	App\\Models\\User	236	Personal Access Token	5cab1c416c51b8ec5f89b8a6563b38249555a29ba788c8f3db6714d5a6e6162a	["*"]	\N	\N	2025-06-05 10:21:06	2025-06-05 10:21:06
214	App\\Models\\User	235	Personal Access Token	719975d165ba11bd81f706845d01fb0dd71552f83ef9a4cbe1674722c8a28925	["*"]	\N	\N	2025-06-05 10:30:24	2025-06-05 10:30:24
215	App\\Models\\User	235	Personal Access Token	9e63417c15656c43283c2525fac52063954160886a47013410ec44e22ba690f0	["*"]	\N	\N	2025-06-05 10:30:28	2025-06-05 10:30:28
216	App\\Models\\User	237	Personal Access Token	5c2f0cdc87f4a3fdd622329bf65827c89c2f1c99a99306fb0a0e6c4d49789d93	["*"]	\N	\N	2025-06-05 12:01:21	2025-06-05 12:01:21
217	App\\Models\\User	237	Personal Access Token	b39eb5a3a07f6c90288dcfaa95e993930dda859e114d78d2aeb477c81d022521	["*"]	\N	\N	2025-06-05 12:01:25	2025-06-05 12:01:25
218	App\\Models\\User	238	Personal Access Token	06a15d8a7851aa0cbbfb5412907bc9776246cadc9ecfd440a75bb83a9debc4e2	["*"]	\N	\N	2025-06-05 12:56:26	2025-06-05 12:56:26
219	App\\Models\\User	238	Personal Access Token	1ad79745c4eaa9634be33f1ec82e8f11e1a1ce30bdbf2693c836f432128ecd36	["*"]	\N	\N	2025-06-05 12:56:31	2025-06-05 12:56:31
220	App\\Models\\User	239	Personal Access Token	03909d4820d4989c05ccd805618d7e7e3171d64f46d55cf87910c8fc95fcdc30	["*"]	\N	\N	2025-06-06 03:32:30	2025-06-06 03:32:30
221	App\\Models\\User	239	Personal Access Token	dd89a5116e78ec94973fe826a1860cd38a04ef2ad05d2b55ac44609197193a13	["*"]	\N	\N	2025-06-06 03:32:35	2025-06-06 03:32:35
222	App\\Models\\User	210	Personal Access Token	46e02c1ea29c3f8abe45aee8ff8aed343ab310c9e20266de4f0ede68f491acf9	["*"]	\N	\N	2025-06-06 06:46:28	2025-06-06 06:46:28
223	App\\Models\\User	212	Personal Access Token	00d4cab39a3da06e37fdbe5f528d4e5b20b9a52f58dab957c2df1423bbf0dd76	["*"]	\N	\N	2025-06-06 06:47:49	2025-06-06 06:47:49
224	App\\Models\\User	239	Personal Access Token	68c97973eaf79195632b7ae04fd675f5bce17cfe2b98cd9ed41a5313d6b30b37	["*"]	\N	\N	2025-06-06 07:10:55	2025-06-06 07:10:55
225	App\\Models\\User	192	Personal Access Token	0fe36f668649c85d5772ffb4095ee0ac1bf5ade12f9d964aa217e82a85f53ce3	["*"]	\N	\N	2025-06-06 07:19:14	2025-06-06 07:19:14
226	App\\Models\\User	233	Personal Access Token	a17db8bc9a5bfe027dafde8c9079cae72ecbc38bb3fbab1e90ceef83d748090e	["*"]	\N	\N	2025-06-06 08:18:31	2025-06-06 08:18:31
227	App\\Models\\User	240	Personal Access Token	2dd387f20b83fb203086bb27abe54babecf1ec4d4ec3cb1db0aa058a3c9bfbf2	["*"]	\N	\N	2025-06-06 11:35:23	2025-06-06 11:35:23
228	App\\Models\\User	240	Personal Access Token	43505bdd555236c730415cdb2cdf89471b07d9bc1995d2c4aa2b3f7ab2906f08	["*"]	\N	\N	2025-06-06 11:35:27	2025-06-06 11:35:27
229	App\\Models\\User	239	Personal Access Token	d464ef6a9f605b5d39c3d52fcf5b984abe80aae946dbad70d75e4f24444ef8f4	["*"]	\N	\N	2025-06-06 12:19:31	2025-06-06 12:19:31
230	App\\Models\\User	210	Personal Access Token	48dcf9ef15d9e7795daf854543ceff45f313d1c09a119de797d4c2df7f20f4b6	["*"]	\N	\N	2025-06-06 12:25:00	2025-06-06 12:25:00
231	App\\Models\\User	238	Personal Access Token	1107159cbc381e39dd64bcf28c9a0caef6f6f32a2709e3b5e6a17b4db15da153	["*"]	\N	\N	2025-06-06 13:04:38	2025-06-06 13:04:38
232	App\\Models\\User	210	Personal Access Token	7bf691d8d754439805d8f29772048590e8a521396a308d5f5485d04314e3fae7	["*"]	\N	\N	2025-06-06 13:10:06	2025-06-06 13:10:06
233	App\\Models\\User	241	Personal Access Token	60c52cea47e06434c564a81c19cfd97a424e9ba96dfef7afc11b9a2f6735105c	["*"]	\N	\N	2025-06-06 13:57:11	2025-06-06 13:57:11
234	App\\Models\\User	241	Personal Access Token	4fceb45e7f55e40d8e9b290f9887a9299042cdc31acff2c37a5deb39f96b8571	["*"]	\N	\N	2025-06-06 13:57:15	2025-06-06 13:57:15
235	App\\Models\\User	241	Personal Access Token	6f692ce69bc0184df8ddeca66f04012d3a3939cdd51cac230d3fb6e8d87bb5f4	["*"]	\N	\N	2025-06-06 14:22:31	2025-06-06 14:22:31
236	App\\Models\\User	241	Personal Access Token	3feb6126b58919698d3d79d1eae69823956a3703ca05211fe9362155f160fcec	["*"]	\N	\N	2025-06-06 14:34:47	2025-06-06 14:34:47
237	App\\Models\\User	211	Personal Access Token	4346597e568294a114771e0098c58dca9908c02f4e09aae17d1656cdbbe704fd	["*"]	\N	\N	2025-06-06 17:53:01	2025-06-06 17:53:01
238	App\\Models\\User	242	Personal Access Token	e765b9561e0d7ad8637dda2dba2c9e56138c06abc157e28bac20511c74e0d56b	["*"]	\N	\N	2025-06-07 12:04:36	2025-06-07 12:04:36
239	App\\Models\\User	242	Personal Access Token	cf50c473f026842ae22bc8eeed8b4fbe2413e28b50164dc92f7ef11888267a01	["*"]	\N	\N	2025-06-07 12:04:40	2025-06-07 12:04:40
240	App\\Models\\User	234	Personal Access Token	5a8325b656e47fc46720c32c05eb45f49be89e5a8a37087da2e0955495b2a65d	["*"]	\N	\N	2025-06-09 08:38:54	2025-06-09 08:38:54
241	App\\Models\\User	243	Personal Access Token	a0def35ab66a3b7211fb971e475a5b8a1570f480329ed02bc91ab2205eae6520	["*"]	\N	\N	2025-06-09 09:13:24	2025-06-09 09:13:24
242	App\\Models\\User	243	Personal Access Token	4ee7113507d04e24eb10758b433fb9eaa180048f0a1fa6bca2d69aec8c15932e	["*"]	\N	\N	2025-06-09 09:13:29	2025-06-09 09:13:29
243	App\\Models\\User	243	Personal Access Token	a0c2e7cedcf5541486e573a7ec3475cad7805569854b036767bb46246b8c9bcb	["*"]	\N	\N	2025-06-09 09:16:15	2025-06-09 09:16:15
244	App\\Models\\User	215	Personal Access Token	16f100e7d39ab73fba0d58fc46080e73b4d726748924a0c9af3c3737940efe52	["*"]	\N	\N	2025-06-09 09:49:57	2025-06-09 09:49:57
245	App\\Models\\User	243	Personal Access Token	68402d20877f54c2a9c9da28e5979dfe3628851fee39a8e2f888ef44a4683b6b	["*"]	\N	\N	2025-06-09 09:52:01	2025-06-09 09:52:01
246	App\\Models\\User	215	Personal Access Token	02d1557f78233785cd33f9e884564e0cd0bb990fa553811f7a04d811a60c0736	["*"]	\N	\N	2025-06-09 09:56:01	2025-06-09 09:56:01
247	App\\Models\\User	243	Personal Access Token	032ea1298d8b870822a65dcae8bb40947172f1089a24b1d51ed2cf6dca88b61f	["*"]	\N	\N	2025-06-09 09:57:56	2025-06-09 09:57:56
248	App\\Models\\User	215	Personal Access Token	955e0b3744c8fe99855d8fa4b585b507511a8c5b2c23193770c0b47911b0d3ca	["*"]	\N	\N	2025-06-09 10:04:20	2025-06-09 10:04:20
249	App\\Models\\User	243	Personal Access Token	904b92e490336a750b5f28acfa41ddd0254b1cbdb29c6e1baf4031d724856603	["*"]	\N	\N	2025-06-09 10:26:22	2025-06-09 10:26:22
250	App\\Models\\User	215	Personal Access Token	0f1d3989c1bedee0e31ccbc1a7a4530d69e93be1acd648b049cf6137cd9125c7	["*"]	\N	\N	2025-06-09 10:30:17	2025-06-09 10:30:17
251	App\\Models\\User	243	Personal Access Token	48b7399c60d6c642d4e4b1b73437d76e95b6d7992fc0477ebee5a38877e06ff2	["*"]	\N	\N	2025-06-09 10:33:23	2025-06-09 10:33:23
252	App\\Models\\User	211	Personal Access Token	558b32965123627f7d4b5a871836994a06452cef82a2f25edb545fc708fe8558	["*"]	\N	\N	2025-06-10 05:46:20	2025-06-10 05:46:20
253	App\\Models\\User	244	Personal Access Token	52f7bc562744f818ec4162a305ccf6e721d23ea5a340aa06bdad7d52813a311a	["*"]	\N	\N	2025-06-10 09:19:28	2025-06-10 09:19:28
254	App\\Models\\User	244	Personal Access Token	40fa6bdc675c3d5401142b4d881cfee75131c931315f88dd83822e07b160a45c	["*"]	\N	\N	2025-06-10 09:19:33	2025-06-10 09:19:33
255	App\\Models\\User	215	Personal Access Token	7c545f373e38f1780f500f18d5616dde1c914f2d83589b22fde1bea943e52a33	["*"]	\N	\N	2025-06-10 13:08:47	2025-06-10 13:08:47
256	App\\Models\\User	230	Personal Access Token	b6f96ff5a34759c17cd281e7417f5e7893e16bca2c11dfa55a2fdd90e26709b0	["*"]	\N	\N	2025-06-11 08:00:51	2025-06-11 08:00:51
257	App\\Models\\User	245	Personal Access Token	e0da363122cbb2421299d51fa1adb1bd6e4f7dadd32d5ddaabcc56cfc8cbd163	["*"]	\N	\N	2025-06-11 09:55:14	2025-06-11 09:55:14
258	App\\Models\\User	245	Personal Access Token	7c188c6b02c77a174b5b9ea3fa011c070c107ccc3dfb3c6d45cd325fdeb5eab6	["*"]	\N	\N	2025-06-11 09:55:20	2025-06-11 09:55:20
259	App\\Models\\User	246	Personal Access Token	7499989b236a7f72dbb7058c1caa338206b4de19fe886617571ce49eb8277c21	["*"]	\N	\N	2025-06-11 09:55:34	2025-06-11 09:55:34
260	App\\Models\\User	246	Personal Access Token	763a795634202e536866f70f7a24f8a89c1afe6f3a1d7f7ac7199da199426e0c	["*"]	\N	\N	2025-06-11 09:55:38	2025-06-11 09:55:38
261	App\\Models\\User	246	Personal Access Token	2860d6cdb2328b6048445ccbb0043332e4bae9b240e2c1efb57e091395cece52	["*"]	\N	\N	2025-06-11 10:02:58	2025-06-11 10:02:58
262	App\\Models\\User	247	Personal Access Token	a06249b31538abf427c44871b38caeb5581ff20e610f1e6a6864b13f16922660	["*"]	\N	\N	2025-06-23 21:05:53	2025-06-23 21:05:53
263	App\\Models\\User	247	Personal Access Token	6f0d7ba7d808956c7102d557ad48d41263d66085455ddda6b0567bc1744d4dd1	["*"]	\N	\N	2025-06-23 21:05:57	2025-06-23 21:05:57
264	App\\Models\\User	248	Personal Access Token	96baf757552a46c0f6da949a541e1209662563efd9cefef0da027eed16e3c84e	["*"]	\N	\N	2025-06-27 14:51:05	2025-06-27 14:51:05
265	App\\Models\\User	248	Personal Access Token	56a962fe671fc5098192cc6569467b7a85a4087b11ff2592535257c5b041f7ee	["*"]	\N	\N	2025-06-27 14:51:08	2025-06-27 14:51:08
266	App\\Models\\User	247	Personal Access Token	5b2519a6c4fc83ec7c1be4916310270427d8fe0f070066b9f734e3c70e3b1110	["*"]	\N	\N	2025-06-27 16:11:17	2025-06-27 16:11:17
267	App\\Models\\User	247	Personal Access Token	d71b5d6d9e254a74062e5750bc281fa5fc154a7cf3c47f9f7017a7bbbde5508f	["*"]	\N	\N	2025-06-27 18:47:30	2025-06-27 18:47:30
268	App\\Models\\User	247	Personal Access Token	7e5bb1711948c40f31a4d2b51e6020e826dd010b69cc6e4f7b2711cfdb53dc1d	["*"]	\N	\N	2025-06-27 19:20:27	2025-06-27 19:20:27
269	App\\Models\\User	247	Personal Access Token	7fc85881164783f7a3fdc92cdd5cb0e81e9b237e6a9b48ac0cc3471e87dfefd2	["*"]	\N	\N	2025-06-27 19:21:20	2025-06-27 19:21:20
270	App\\Models\\User	247	Personal Access Token	72c5d4406c9928d750b704d3da68f33decc13798b0f2266cc3df055772510942	["*"]	\N	\N	2025-06-27 19:28:51	2025-06-27 19:28:51
271	App\\Models\\User	247	Personal Access Token	f15fe98d59286310471af236b6933ba7f4ab31b17fbf61f1b27d30d212a9e07e	["*"]	\N	\N	2025-06-27 19:35:22	2025-06-27 19:35:22
272	App\\Models\\User	247	Personal Access Token	d360406403c8d128ea9b07b27b2fb995c143e08d0793a37e03f44f2a166d3f98	["*"]	\N	\N	2025-06-27 20:04:02	2025-06-27 20:04:02
273	App\\Models\\User	195	Personal Access Token	57ee28cc825036f0cb820bce8cb745e714402b2e1abadc9a6e509d8a9d5ed40a	["*"]	\N	\N	2025-06-28 07:44:44	2025-06-28 07:44:44
274	App\\Models\\User	249	Personal Access Token	1651c9a2fe2e2b06ed0d88704ee1c9a5f32a13e014bd9c1845557022220bb9dc	["*"]	\N	\N	2025-06-28 13:01:59	2025-06-28 13:01:59
275	App\\Models\\User	249	Personal Access Token	3f54675dd27e705a19871b4db29ce0ae3cbc9ac3912bfba5869766c31a061739	["*"]	\N	\N	2025-06-28 13:02:01	2025-06-28 13:02:01
276	App\\Models\\User	247	Personal Access Token	503192ae147a17e60c6da59d9d8bba8707ecdfc68ee1f15c879b76a39135fb89	["*"]	\N	\N	2025-07-04 19:35:50	2025-07-04 19:35:50
277	App\\Models\\User	250	Personal Access Token	dd691904456c177a8a444276ce3a92c32d68f7a0f3736a466db912220f225470	["*"]	\N	\N	2025-07-09 07:16:57	2025-07-09 07:16:57
278	App\\Models\\User	250	Personal Access Token	0397bc17836c7ccbfea8aabc846a6182e9a7ee6a00f01b3c21b3f5427f10e426	["*"]	\N	\N	2025-07-09 07:17:01	2025-07-09 07:17:01
279	App\\Models\\User	251	Personal Access Token	ee043f5ef851a0ba3e8e8374e9fc8608e357cf0f3eef7a9cc9167341968ad98b	["*"]	\N	\N	2025-07-09 10:44:36	2025-07-09 10:44:36
280	App\\Models\\User	251	Personal Access Token	a16ad17027269fde84b6d96e264755356492647d5e474f167b45fa76284340fb	["*"]	\N	\N	2025-07-09 10:44:39	2025-07-09 10:44:39
281	App\\Models\\User	251	Personal Access Token	e4e9e4561d7ba74945bf3062287707bb528722388f0dc3e5f4c3e3a801fcc96b	["*"]	\N	\N	2025-07-09 10:45:45	2025-07-09 10:45:45
282	App\\Models\\User	251	Personal Access Token	8574efdf5d17ac9cbd2bbc2abc2de6f129726f8ebd42bed1f1abe90eb781facf	["*"]	\N	\N	2025-07-09 17:53:24	2025-07-09 17:53:24
283	App\\Models\\User	251	Personal Access Token	ef30ef64f519ca2295032b6c29ec813ca81ee68585ade18d772d8fb3e5ec142b	["*"]	\N	\N	2025-07-09 19:04:09	2025-07-09 19:04:09
284	App\\Models\\User	251	Personal Access Token	8e360a9e764d38e32089678f9df56b47c425a46ccb06f52f71f1a5e0aa456c7a	["*"]	\N	\N	2025-07-09 19:05:33	2025-07-09 19:05:33
285	App\\Models\\User	252	Personal Access Token	fd94cab5ae5a0c64e2f21804024987f36ed9945ba23f035f4e3ff6b2aef159a3	["*"]	\N	\N	2025-07-10 06:19:03	2025-07-10 06:19:03
286	App\\Models\\User	252	Personal Access Token	6b6c892d88564c28cff85ba5daa8ddec94ee5b2ec1a8d60a6770b50ae9ce7307	["*"]	\N	\N	2025-07-10 06:19:06	2025-07-10 06:19:06
287	App\\Models\\User	251	Personal Access Token	d56bb7fc9a9c5e97fa903abf1ddb7ff996c2330bda037f86493bb9c6aac33479	["*"]	\N	\N	2025-07-10 08:25:29	2025-07-10 08:25:29
288	App\\Models\\User	224	Personal Access Token	917636859a720b6e0aa844020d70344bb6a14789c8eeb91a2a3cece44a95a493	["*"]	\N	\N	2025-07-10 12:08:30	2025-07-10 12:08:30
289	App\\Models\\User	253	Personal Access Token	18a4ba2ec5a7e41f22bd1afa43a9df7b062f18d5c99de279485ea7f39a742865	["*"]	\N	\N	2025-07-10 14:34:32	2025-07-10 14:34:32
290	App\\Models\\User	253	Personal Access Token	8497cf46ef3deb6b0e363db9d8f0b78241444f0e9a88aab7726055c3cbc06bea	["*"]	\N	\N	2025-07-10 14:34:35	2025-07-10 14:34:35
291	App\\Models\\User	245	Personal Access Token	5b8036a94912c94d2068eb4aa60fca957b6d49b2a713a92cb8b63aadc086e45e	["*"]	\N	\N	2025-07-10 19:08:26	2025-07-10 19:08:26
292	App\\Models\\User	216	Personal Access Token	146ace9b0ff2bef9cb97fddd9b28a237cf7baa8abde7a0d75fe55aaa9b09830e	["*"]	\N	\N	2025-07-10 19:19:55	2025-07-10 19:19:55
293	App\\Models\\User	252	Personal Access Token	34a855b5745b2dec95766fba6d594eb85a82175e13a0a2e28e49054843bc3a3b	["*"]	\N	\N	2025-07-10 20:44:12	2025-07-10 20:44:12
294	App\\Models\\User	253	Personal Access Token	1811633b3d66665c470a7c991179dad6b4f773ca1b27f5b28bb9b71e303df9d7	["*"]	\N	\N	2025-07-11 04:05:40	2025-07-11 04:05:40
295	App\\Models\\User	252	Personal Access Token	333130084384934e6b039c3396b385898e1537c7b30c930006ba933a8307a9c5	["*"]	\N	\N	2025-07-11 05:54:51	2025-07-11 05:54:51
296	App\\Models\\User	251	Personal Access Token	ddecfd4d92e0b9f45237788ef25715d4ed174b3b675d510ac3aa59571e929c23	["*"]	\N	\N	2025-07-11 06:00:10	2025-07-11 06:00:10
297	App\\Models\\User	224	Personal Access Token	a56f145cc9c664ab9a1cd7ee656aaf4aade42a19fe0f84dc6b08a4022ade6891	["*"]	\N	\N	2025-07-11 06:01:18	2025-07-11 06:01:18
298	App\\Models\\User	252	Personal Access Token	a8520d1f183a858a613a78cf6a63bca81e0e1fc2bb44b95c5e0ee3ec51afc832	["*"]	\N	\N	2025-07-11 06:03:13	2025-07-11 06:03:13
299	App\\Models\\User	252	Personal Access Token	5f438a8ccc0ff1b967c6fd1e3aedbc23345b98a54645cd99ab45b946fe1fdf5c	["*"]	\N	\N	2025-07-11 06:57:03	2025-07-11 06:57:03
300	App\\Models\\User	245	Personal Access Token	28881b6bac47a04f5861e44b80116b429f0c889758889df590a7526b3b9c0744	["*"]	\N	\N	2025-07-11 07:58:16	2025-07-11 07:58:16
301	App\\Models\\User	252	Personal Access Token	15abad66ea880d41fdbe1ea29eb90830b4c637dc714e99add1b582f7d4236ea0	["*"]	\N	\N	2025-07-11 10:36:01	2025-07-11 10:36:01
302	App\\Models\\User	254	Personal Access Token	5636a70c3a42afa6e17846739f10501b2ac8603f032759dd1595ffafcd631caa	["*"]	\N	\N	2025-07-11 11:23:07	2025-07-11 11:23:07
303	App\\Models\\User	254	Personal Access Token	2c3d97396aa7fd6611943473b24633ef8d6ebb9b94a7a0355723d6eaf0f96a82	["*"]	\N	\N	2025-07-11 11:23:10	2025-07-11 11:23:10
304	App\\Models\\User	255	Personal Access Token	280ed4b3a311c8643a278ec4ef5c4d95739ec954ef23a7ea809fc6c0615785ec	["*"]	\N	\N	2025-07-11 11:44:15	2025-07-11 11:44:15
305	App\\Models\\User	255	Personal Access Token	ce4b8658d09864de3fb5297cbf83e6d50ae45beb9b4c8832098993ac502002d2	["*"]	\N	\N	2025-07-11 11:44:18	2025-07-11 11:44:18
306	App\\Models\\User	255	Personal Access Token	7798464a104b6dbbf73e4d1544c40904229232916f9b253d14ad768392c3f09c	["*"]	\N	\N	2025-07-11 11:49:55	2025-07-11 11:49:55
307	App\\Models\\User	255	Personal Access Token	5ddd6e99ad7720b0a6953f9b4060efcfe4c4dca99d0e70e6a28463852a1c473d	["*"]	\N	\N	2025-07-11 11:54:10	2025-07-11 11:54:10
308	App\\Models\\User	256	Personal Access Token	c4bdc9cf5ede89f0f4dbbccdf9db1947aaf85b6c729427e9aad6c2d6bd7dcb15	["*"]	\N	\N	2025-07-11 12:03:07	2025-07-11 12:03:07
309	App\\Models\\User	256	Personal Access Token	6d68ef627c50d2deea30a48397fba5dce12e6348cab38e260c86b13a74d44a83	["*"]	\N	\N	2025-07-11 12:03:10	2025-07-11 12:03:10
310	App\\Models\\User	253	Personal Access Token	189eacd309360fe8ac427d61e782e8371d3b58046ff0cba4f430b897a550e1a9	["*"]	\N	\N	2025-07-11 12:17:35	2025-07-11 12:17:35
311	App\\Models\\User	224	Personal Access Token	09890b3ec994ceb48ea4aaad64f382f25f5310191e33d27a13bb64cdbead08c8	["*"]	\N	\N	2025-07-11 12:48:58	2025-07-11 12:48:58
312	App\\Models\\User	256	Personal Access Token	126748abbe2fb05fdb005b0f544fedea8227ba3bb97a1e0503f5b5f4e00221c3	["*"]	\N	\N	2025-07-11 13:23:26	2025-07-11 13:23:26
313	App\\Models\\User	257	Personal Access Token	c4ee65e9cfdbf5b76d4090624a54a63620a46e306a4960d75f69719c28fa3200	["*"]	\N	\N	2025-07-11 13:37:02	2025-07-11 13:37:02
314	App\\Models\\User	257	Personal Access Token	75f9005d43025c5687a90d3b9d60dc299602227f14494cefdb161683b3ce138b	["*"]	\N	\N	2025-07-11 13:37:07	2025-07-11 13:37:07
315	App\\Models\\User	257	Personal Access Token	19710a0aa85b12263e418a3b827a657a92c4bcfabdc41ae57597d4b6d12efbae	["*"]	\N	\N	2025-07-11 13:44:20	2025-07-11 13:44:20
316	App\\Models\\User	257	Personal Access Token	50890a5dde1b2ec33e53f8f7736a67e67a0eb011c4a8a890404ef45ed6fd894d	["*"]	\N	\N	2025-07-11 14:15:56	2025-07-11 14:15:56
317	App\\Models\\User	251	Personal Access Token	ff0607a66acd5f61e635d5e1990d60676228295a5d8348f18f2d050f89ea4f4d	["*"]	\N	\N	2025-07-11 14:28:08	2025-07-11 14:28:08
318	App\\Models\\User	193	Personal Access Token	7680ad09647a6924d274c44d603cf17211f24943577bdae14a695d2bf5b1b123	["*"]	\N	\N	2025-07-11 14:31:07	2025-07-11 14:31:07
319	App\\Models\\User	258	Personal Access Token	8557647a76a2c122709a174c8eec315a022d5656498f969e183de3d8b572fdc2	["*"]	\N	\N	2025-07-11 14:43:04	2025-07-11 14:43:04
320	App\\Models\\User	258	Personal Access Token	240e87e593981fdb48c5c3db57ea21187e2de5674e86f1bd8fe134304e5ecf16	["*"]	\N	\N	2025-07-11 14:43:11	2025-07-11 14:43:11
321	App\\Models\\User	245	Personal Access Token	0a8679ccf431ad68898a470751bda8f4a707ba7fc153fcbe54129cf71bcbb552	["*"]	\N	\N	2025-07-11 14:58:21	2025-07-11 14:58:21
322	App\\Models\\User	245	Personal Access Token	583e3fa1b11cc7ebbc488d583348df2bb2ef926a7974d11415d6b2235aa997ae	["*"]	\N	\N	2025-07-11 15:00:13	2025-07-11 15:00:13
323	App\\Models\\User	244	Personal Access Token	e6ace260f815619c85b678801a81efc77bd40f79642178d6c6c35fdaaedb234e	["*"]	\N	\N	2025-07-11 15:01:42	2025-07-11 15:01:42
324	App\\Models\\User	245	Personal Access Token	91de1129e76baf5895f35c84d30a1a972f7f5145e15882e6a438063423a7cf40	["*"]	\N	\N	2025-07-11 15:02:24	2025-07-11 15:02:24
325	App\\Models\\User	259	Personal Access Token	84462924497f74d8da17748a1e8057a1b4a4a78295a84c6bbaada4aa26310528	["*"]	\N	\N	2025-07-11 15:06:09	2025-07-11 15:06:09
326	App\\Models\\User	259	Personal Access Token	cf8343b1c3f04319df9852e72aaa14985cc001d12bdf094005629467fa93a8c1	["*"]	\N	\N	2025-07-11 15:06:14	2025-07-11 15:06:14
327	App\\Models\\User	260	Personal Access Token	dc544d056ac0a3e5b40505cebbd9c22a17d530bb2740f1c661fa7b95989c7862	["*"]	\N	\N	2025-07-11 15:09:28	2025-07-11 15:09:28
328	App\\Models\\User	260	Personal Access Token	2f20e740cb4b3e521b69c7042a9f82fc55e1f4c07af750e413c9fd4b9b2ef03a	["*"]	\N	\N	2025-07-11 15:09:28	2025-07-11 15:09:28
329	App\\Models\\User	260	Personal Access Token	2eb3af15fe35db17c3d06c7715ae9c29307c60f4c131600beac7d3691428a06b	["*"]	\N	\N	2025-07-11 15:09:33	2025-07-11 15:09:33
330	App\\Models\\User	260	Personal Access Token	c106acfef80672a3baa2cad7b50ec1cc5f216544db6a9df33e80f50105273c99	["*"]	\N	\N	2025-07-11 15:09:33	2025-07-11 15:09:33
331	App\\Models\\User	261	Personal Access Token	b8754a5650cc89236cb85efed7acdaebb4815f1b4e0c94a93687531d6006a328	["*"]	\N	\N	2025-07-11 15:11:30	2025-07-11 15:11:30
332	App\\Models\\User	261	Personal Access Token	1cff246d84abeacdafb7fc4137b1671679d046da7195eb0d9298db0a230d525c	["*"]	\N	\N	2025-07-11 15:11:34	2025-07-11 15:11:34
333	App\\Models\\User	257	Personal Access Token	56e6fc9966a5ebb1c51106d0d207e17a67ab403fcc0c4b2f9b49f0fbc8d74167	["*"]	\N	\N	2025-07-11 15:13:40	2025-07-11 15:13:40
334	App\\Models\\User	260	Personal Access Token	9784290e6e37caeaed3f12b08f8abed6835dd4ec3db8d9f9326ecd858cc9fe96	["*"]	\N	\N	2025-07-11 18:17:20	2025-07-11 18:17:20
335	App\\Models\\User	261	Personal Access Token	33791c986522ecc6231d5a3d1aacac8a0623cb0d96dd862e8092066232ef1f86	["*"]	\N	\N	2025-07-11 18:18:10	2025-07-11 18:18:10
336	App\\Models\\User	261	Personal Access Token	3261c82475baa6c1692a9b4915e4dce1ddde9d4dee830664d079c218ca201dd7	["*"]	\N	\N	2025-07-11 19:28:36	2025-07-11 19:28:36
337	App\\Models\\User	261	Personal Access Token	a62b5763c867c2d789af978a1e830048846dfdaf373f6194609ebd967017fd41	["*"]	\N	\N	2025-07-12 05:09:57	2025-07-12 05:09:57
338	App\\Models\\User	253	Personal Access Token	a27c8e9d217eedc4a999d83121ab0ffdada4e60c11899c7963b77bc241310c5c	["*"]	\N	\N	2025-07-12 05:12:54	2025-07-12 05:12:54
339	App\\Models\\User	260	Personal Access Token	289be6b8ce469818787800105bdc951b8518ba221dfd9af740f9ce7c03336a0d	["*"]	\N	\N	2025-07-12 05:19:26	2025-07-12 05:19:26
340	App\\Models\\User	258	Personal Access Token	2daee2ff3fa70bac5ee864512896c08c6e51f74eb0c71e273ae88017f8da3cdf	["*"]	\N	\N	2025-07-12 05:22:13	2025-07-12 05:22:13
341	App\\Models\\User	262	Personal Access Token	2fe52a6315ccc69699dfecf1bb1704bd7ee04f22878cc58083f03e841fba62d5	["*"]	\N	\N	2025-07-12 05:30:57	2025-07-12 05:30:57
342	App\\Models\\User	262	Personal Access Token	684d19e2e0af97778b9ce0963fbde92df2a6d85f372d3e03ed30cfab8d429022	["*"]	\N	\N	2025-07-12 05:31:02	2025-07-12 05:31:02
343	App\\Models\\User	258	Personal Access Token	a10043465e1259dbad711d08a942ac4d3f4c3c5ab2d2ea463ad3d904f3d28285	["*"]	\N	\N	2025-07-12 06:05:28	2025-07-12 06:05:28
344	App\\Models\\User	260	Personal Access Token	aee49258973d0ddad9309a17796b30c1e70910dda388c8165919c920d6c43561	["*"]	\N	\N	2025-07-12 06:06:40	2025-07-12 06:06:40
345	App\\Models\\User	245	Personal Access Token	34a7f882df1cc92cce196d585fcb0dbffc45b50a280579bba4e7ead57d0d4048	["*"]	\N	\N	2025-07-12 06:15:52	2025-07-12 06:15:52
346	App\\Models\\User	216	Personal Access Token	618d298012ce6a4a613ba0837439eaeac5a3f53eadd7938af9ddc666c9dab65e	["*"]	\N	\N	2025-07-12 06:19:41	2025-07-12 06:19:41
347	App\\Models\\User	257	Personal Access Token	07ecb75d22965690b5b4a1a9466b26960bf770fa6e71b345987e28b1a3827bdc	["*"]	\N	\N	2025-07-12 06:38:07	2025-07-12 06:38:07
348	App\\Models\\User	258	Personal Access Token	be6631eed3dfe3b79c173aa2bd0669096422656681ddc7349373b2540697c3e6	["*"]	\N	\N	2025-07-12 06:48:11	2025-07-12 06:48:11
349	App\\Models\\User	258	Personal Access Token	542c28611fed6dda0aa3a8946aaf32835847621b3b885b4e6ff413c68494915e	["*"]	\N	\N	2025-07-12 07:14:19	2025-07-12 07:14:19
350	App\\Models\\User	258	Personal Access Token	fcdb2c0d1dd702d4e313797bd2a62d17edddda658a3eb86592a65efbcd0cf1c7	["*"]	\N	\N	2025-07-12 07:26:12	2025-07-12 07:26:12
351	App\\Models\\User	258	Personal Access Token	8b0bc5c9a3353aa1a35b57174bdbb9a9d26f9ce2fd2140d92216217d71773863	["*"]	\N	\N	2025-07-12 07:29:28	2025-07-12 07:29:28
352	App\\Models\\User	258	Personal Access Token	3fc42b8dffd20540d0ea2041d67458dadd532e2a8f955f3587bc249e575ed831	["*"]	\N	\N	2025-07-12 07:35:05	2025-07-12 07:35:05
353	App\\Models\\User	258	Personal Access Token	7ae2d0adfe190b299a7d19d51730903b823e3044b06b786666a97e9a8cae0a69	["*"]	\N	\N	2025-07-12 08:26:53	2025-07-12 08:26:53
354	App\\Models\\User	263	Personal Access Token	186c164d88b62786d6dd865102e6b1109d7c4f3e939e9b16015a9de504770cf9	["*"]	\N	\N	2025-07-12 08:26:57	2025-07-12 08:26:57
355	App\\Models\\User	263	Personal Access Token	3ee65d9624043e029056085a948475c08fccc95f0269b3f57e1a376ab6e3ce8a	["*"]	\N	\N	2025-07-12 08:27:02	2025-07-12 08:27:02
356	App\\Models\\User	264	Personal Access Token	b21322f15874276db998e76d8d95377a52300e001fc17f7f6adaa240a4601aff	["*"]	\N	\N	2025-07-12 08:54:57	2025-07-12 08:54:57
357	App\\Models\\User	264	Personal Access Token	e85e65c0a7414d69c2467643d25c8c73deac05c48231dc4ae7e907394392afcb	["*"]	\N	\N	2025-07-12 08:55:02	2025-07-12 08:55:02
358	App\\Models\\User	265	Personal Access Token	dd295516e54b9837d19eff1ffe9284cbabacaad3f527f2870260f5751f146ce4	["*"]	\N	\N	2025-07-12 08:55:36	2025-07-12 08:55:36
359	App\\Models\\User	265	Personal Access Token	e3b38cc9b115b4df595afd6143851dcd3d9296f19d79b1b41839c4a061aa7067	["*"]	\N	\N	2025-07-12 08:55:41	2025-07-12 08:55:41
360	App\\Models\\User	263	Personal Access Token	dcbed025c3627dd27503664d25872d9ac7c81ed340bdb680b654173c9fc85a42	["*"]	\N	\N	2025-07-12 09:24:04	2025-07-12 09:24:04
361	App\\Models\\User	264	Personal Access Token	f0a61b31d23c58f4c6f8eb476c01b04f4bed838b48924c53cc96f22e6de16e72	["*"]	\N	\N	2025-07-12 09:46:20	2025-07-12 09:46:20
362	App\\Models\\User	264	Personal Access Token	891afb7f3174ef40047ddda60b64afccb9f3df2b37ee12e99c2d12c5c486affe	["*"]	\N	\N	2025-07-12 09:58:15	2025-07-12 09:58:15
363	App\\Models\\User	244	Personal Access Token	cc8e154a1dd34605bd9e4a43013f8740c2066f748cd59a455fc1306e4c75746d	["*"]	\N	\N	2025-07-12 09:58:51	2025-07-12 09:58:51
364	App\\Models\\User	263	Personal Access Token	48f7b44c514e22329018199751815e79514673d5fc4dcd8a96e9d7ddfec26327	["*"]	\N	\N	2025-07-12 10:31:31	2025-07-12 10:31:31
365	App\\Models\\User	258	Personal Access Token	132a744f07eb8048047619c18f2b6291db2b4ca2eace1f2a102acbace213c9cc	["*"]	\N	\N	2025-07-12 10:32:22	2025-07-12 10:32:22
366	App\\Models\\User	263	Personal Access Token	e94205f8707fe17e9620b2820e3a77f6d785f71db391c13822892d7643213dd1	["*"]	\N	\N	2025-07-12 11:03:20	2025-07-12 11:03:20
367	App\\Models\\User	258	Personal Access Token	e0dd0bc72a49c162da30836d0e1441deb883ae85f3daf6a7d8f6f1d7d1e64326	["*"]	\N	\N	2025-07-12 12:01:51	2025-07-12 12:01:51
368	App\\Models\\User	261	Personal Access Token	5742082a9c9f98eeaa51b1de866ef5a8fe4fd51b81f2767028cbde4fb10c07fe	["*"]	\N	\N	2025-07-12 12:03:11	2025-07-12 12:03:11
369	App\\Models\\User	260	Personal Access Token	3ee712efed3c00f51de03dfa3db4095050ac5d06420ee0a19495c3be99934fd4	["*"]	\N	\N	2025-07-12 12:03:56	2025-07-12 12:03:56
370	App\\Models\\User	265	Personal Access Token	dbe89c6632132fcde685cc965d4ec2bfe20fd904168cd22c3ae46e8ef0eee3b8	["*"]	\N	\N	2025-07-12 12:05:55	2025-07-12 12:05:55
371	App\\Models\\User	211	Personal Access Token	fa28cd591df03ab297607eff2f0a216b565828497242373d0ef531cea5e0a4f0	["*"]	\N	\N	2025-07-12 12:08:24	2025-07-12 12:08:24
372	App\\Models\\User	260	Personal Access Token	499d58951175c61f149647ab412d641d09c5382d6eafb1ca75538291085febf0	["*"]	\N	\N	2025-07-12 12:13:18	2025-07-12 12:13:18
373	App\\Models\\User	197	Personal Access Token	8d88e0a36235585262e1b61e269fa333e9cecfac043e5af6ae99fb7618a0cf98	["*"]	\N	\N	2025-07-12 12:20:14	2025-07-12 12:20:14
374	App\\Models\\User	260	Personal Access Token	d6f89b2401ca1f321a0ddb1fa21b4eee6cdac05d5bcd5626444bb8220668e964	["*"]	\N	\N	2025-07-12 12:30:15	2025-07-12 12:30:15
375	App\\Models\\User	260	Personal Access Token	607806135cd7cad5b51a9b9d1c31ad30156211c63dbcef19fbaa427f49336204	["*"]	\N	\N	2025-07-12 12:33:04	2025-07-12 12:33:04
376	App\\Models\\User	260	Personal Access Token	41320a09b1aee99176957a95d5f19e49268586f122f689617a16f417c973083e	["*"]	\N	\N	2025-07-12 12:34:36	2025-07-12 12:34:36
377	App\\Models\\User	260	Personal Access Token	86b90d25c51a9b52db93d787704d6d00e0e11f0e241eef59d1ea954b604f7693	["*"]	\N	\N	2025-07-12 12:36:22	2025-07-12 12:36:22
378	App\\Models\\User	260	Personal Access Token	a2e9ef6c3894af0a11815d7d356c5130748c18e9cd139502124d1f165f3cc83f	["*"]	\N	\N	2025-07-12 12:48:13	2025-07-12 12:48:13
379	App\\Models\\User	260	Personal Access Token	5e827c6e3aaf2d897f09bade9dd1454b8436f3f09188c0a7d8238e5965c6524b	["*"]	\N	\N	2025-07-12 13:02:24	2025-07-12 13:02:24
380	App\\Models\\User	260	Personal Access Token	9ba81f147537ec09c3188d5b0cc131a2ddd117c6ab48361d0535acc214b63ff7	["*"]	\N	\N	2025-07-12 13:17:20	2025-07-12 13:17:20
381	App\\Models\\User	260	Personal Access Token	47a648f6a05eaf6a24577f50c8f9e125dc219b5937ed988ef5b52f20dbd2fdf3	["*"]	\N	\N	2025-07-12 13:34:05	2025-07-12 13:34:05
382	App\\Models\\User	260	Personal Access Token	2ee07d0a471b5cb40253c997b9fd9775fc5f34da78fe25a502a70b76e2103fea	["*"]	\N	\N	2025-07-12 13:46:20	2025-07-12 13:46:20
383	App\\Models\\User	260	Personal Access Token	6bbe177db437d21983286076e1f92baecfc19e989ee1a866494ac1b09e6ab873	["*"]	\N	\N	2025-07-12 13:59:48	2025-07-12 13:59:48
384	App\\Models\\User	49	Personal Access Token	6bab963b06eeb6d723ea3c41c323d9d63950e66d3a8aa329aedae1779fa1c4b5	["*"]	\N	\N	2025-07-12 14:40:46	2025-07-12 14:40:46
385	App\\Models\\User	245	Personal Access Token	c7eb2b0290935162ac6769072d93ad50b1c5aace6a59164bbff87f1e7d127b86	["*"]	\N	\N	2025-07-13 02:12:09	2025-07-13 02:12:09
386	App\\Models\\User	260	Personal Access Token	8a158f71d1e8bbd58b0d65a751a5a221bf159638f3aff4121b67a4f44a42dd9d	["*"]	\N	\N	2025-07-13 02:51:20	2025-07-13 02:51:20
387	App\\Models\\User	266	Personal Access Token	6aa2e0c195f69f306e30d27107f8c7cc1faabb55ef3fa8153c35c21d4e3a1bb4	["*"]	\N	\N	2025-07-13 07:26:29	2025-07-13 07:26:29
388	App\\Models\\User	266	Personal Access Token	6fa7599054ed47598a0b106acac4c855cef59688837e2f99b6d1ffdeaf6121f6	["*"]	\N	\N	2025-07-13 07:26:33	2025-07-13 07:26:33
389	App\\Models\\User	263	Personal Access Token	c510469f85864dfdf724cfc3ba5275414eca74518fd50a540d9f84c271458c0b	["*"]	\N	\N	2025-07-13 07:38:54	2025-07-13 07:38:54
390	App\\Models\\User	264	Personal Access Token	2d54e6157bc8315e7d2614a860d9b375aba55332fb3c9b26f72a49300e839e45	["*"]	\N	\N	2025-07-13 07:43:50	2025-07-13 07:43:50
391	App\\Models\\User	267	Personal Access Token	8175e150e9bd51f5b5ecb3f666c443d9618bf504c231650539a9434f83f2f053	["*"]	\N	\N	2025-07-13 07:55:42	2025-07-13 07:55:42
392	App\\Models\\User	267	Personal Access Token	f33b81959e92f8a39415fe2231789337a29e9bd11c5781a19102d3b29ddc5065	["*"]	\N	\N	2025-07-13 07:55:48	2025-07-13 07:55:48
393	App\\Models\\User	267	Personal Access Token	6a47bd43d4dfb1ce8c852d2242e816fd03611f23b661fddfc90f7af691f9f7d3	["*"]	\N	\N	2025-07-13 08:24:33	2025-07-13 08:24:33
394	App\\Models\\User	262	Personal Access Token	60b1da937ca0df99831fbb92744dcea0cb754619f225f35f18b6e0e8e3e5176e	["*"]	\N	\N	2025-07-13 08:30:50	2025-07-13 08:30:50
395	App\\Models\\User	262	Personal Access Token	0c4a10771628b8c03a818098d75ab552dc6613feedbd6263e986000d7e0d1a61	["*"]	\N	\N	2025-07-13 10:27:28	2025-07-13 10:27:28
396	App\\Models\\User	260	Personal Access Token	e6cd33a0c841bd60eac58bf75744f4660cc03fe192ac9dc5d02c6c65bcb9d2bb	["*"]	\N	\N	2025-07-13 10:28:14	2025-07-13 10:28:14
397	App\\Models\\User	260	Personal Access Token	730e5b2adfabffca318c3b3fee96f02764877ea63315909dc4049bc5a5a30825	["*"]	\N	\N	2025-07-13 10:34:11	2025-07-13 10:34:11
398	App\\Models\\User	267	Personal Access Token	60a5e051a066594ac470d3b3a6f7b2da8441f114ffad3c752949c4fc38a8f850	["*"]	\N	\N	2025-07-13 10:56:26	2025-07-13 10:56:26
399	App\\Models\\User	263	Personal Access Token	9ea1d90c399561662c6837ae73bda084386ccfae7b7f61293b293b53c98cc509	["*"]	\N	\N	2025-07-13 11:02:20	2025-07-13 11:02:20
400	App\\Models\\User	268	Personal Access Token	38123c021d1f65e68d1fa5f75dbd31f6d2836bf96c832b72e3c1ac71726bddf7	["*"]	\N	\N	2025-07-13 11:10:11	2025-07-13 11:10:11
401	App\\Models\\User	268	Personal Access Token	ef6317aa53decff9863ff3843618513b9569c4fd04bc7f23846f083f45f001d1	["*"]	\N	\N	2025-07-13 11:10:16	2025-07-13 11:10:16
402	App\\Models\\User	268	Personal Access Token	c15bde4625b26a43758bc8c2da9a5ac9145236540e78e2a8f48ef1dd421dca21	["*"]	\N	\N	2025-07-13 11:13:17	2025-07-13 11:13:17
403	App\\Models\\User	268	Personal Access Token	f920e64da627179afa6c7c7ad706de5fe74c04dcae5d09b53310721c4b1bef0f	["*"]	\N	\N	2025-07-13 11:19:28	2025-07-13 11:19:28
404	App\\Models\\User	260	Personal Access Token	6784fa05ec5ddc8e5935dee882dd4b1b09f6ddccc437eb2134c208c41b670da1	["*"]	\N	\N	2025-07-13 11:25:37	2025-07-13 11:25:37
405	App\\Models\\User	265	Personal Access Token	22ad08b5a4308fcf6ef3e71320d0d820b73144fd44c19c53ed9ea231f0700abc	["*"]	\N	\N	2025-07-13 11:26:19	2025-07-13 11:26:19
406	App\\Models\\User	268	Personal Access Token	7a3cf324a84b5c7b89b3957d70793c0a02d8f876b62fff682a422f0c33f78ec7	["*"]	\N	\N	2025-07-13 11:31:43	2025-07-13 11:31:43
407	App\\Models\\User	260	Personal Access Token	55c87cd469b5696f1efc4ebd67e54e6412ff9f53262453c6fab0df318a8d98e5	["*"]	\N	\N	2025-07-13 11:32:45	2025-07-13 11:32:45
408	App\\Models\\User	268	Personal Access Token	681d9e1b8f7e17a482a76c3da6bdd167a38e4554d2620d495f8977b30f79bc62	["*"]	\N	\N	2025-07-13 11:33:46	2025-07-13 11:33:46
409	App\\Models\\User	197	Personal Access Token	4b8f252d7487802ebd1c9607c8e1b697ef223c9fe52894b756bf27606e4aef36	["*"]	\N	\N	2025-07-13 11:43:48	2025-07-13 11:43:48
410	App\\Models\\User	268	Personal Access Token	84f273ebfdd3c421ecae75b4e8dc72a95d43e0d55f06d38eda5d785ba29e09e3	["*"]	\N	\N	2025-07-13 12:01:50	2025-07-13 12:01:50
411	App\\Models\\User	260	Personal Access Token	268d78f182e5b60e8a8f1ee7d7af3e225c715e6951e9dc0896e57ba1c5ff0220	["*"]	\N	\N	2025-07-13 12:08:45	2025-07-13 12:08:45
412	App\\Models\\User	265	Personal Access Token	74849dcc351053bf2e4a951165c4ae276eb5a1d11d22c4790ce7ece92b1b9fa7	["*"]	\N	\N	2025-07-13 12:53:08	2025-07-13 12:53:08
413	App\\Models\\User	211	Personal Access Token	7bfbc35e09d76e73fc6613b46802ab58794d112c19e7576f626d9da6444663fe	["*"]	\N	\N	2025-07-13 12:54:53	2025-07-13 12:54:53
414	App\\Models\\User	269	Personal Access Token	d74e14c130ff369ee4e748e5addd11df5153fc4ccbb8e5582ece18066cc12303	["*"]	\N	\N	2025-07-13 13:59:37	2025-07-13 13:59:37
415	App\\Models\\User	269	Personal Access Token	bc18bd173610c6dd2ce1e920e5718e1f0108b2bf4c9b26fb8e5b6191b652476e	["*"]	\N	\N	2025-07-13 13:59:41	2025-07-13 13:59:41
416	App\\Models\\User	211	Personal Access Token	b524d9d84feb26a3264aa73e1be7ad278e7216ab83fe6a64983ca58d4e83a4e6	["*"]	\N	\N	2025-07-13 14:02:49	2025-07-13 14:02:49
417	App\\Models\\User	270	Personal Access Token	5f29a5ae0a1db81f35e51684db383691bce7e61ed8d46a1360a015c824d1360f	["*"]	\N	\N	2025-07-13 15:22:32	2025-07-13 15:22:32
418	App\\Models\\User	270	Personal Access Token	a3e09d2339db18586d5be54660ea9e31e81eadfd7bedc8a28438271b395c19db	["*"]	\N	\N	2025-07-13 15:22:36	2025-07-13 15:22:36
419	App\\Models\\User	268	Personal Access Token	5602dd705a19885978d206ab2a4b7e0c6a4fa39f20118c3b8a6d3f25fb51fbb1	["*"]	\N	\N	2025-07-13 15:57:34	2025-07-13 15:57:34
420	App\\Models\\User	262	Personal Access Token	1b289b7b0c58dd9cfeee0e3a8866d5fd00d382ad32e2a23067330b8d89cdd79d	["*"]	\N	\N	2025-07-13 19:20:42	2025-07-13 19:20:42
421	App\\Models\\User	271	Personal Access Token	e6808481426c62faecbccbe1d63eb11c526da471d486d5005d1f700937a788ef	["*"]	\N	\N	2025-07-13 20:16:01	2025-07-13 20:16:01
422	App\\Models\\User	271	Personal Access Token	1f0866a36fde2ffbd87f4e8475d58b0f0416b5fc17ca9df565e6f9a77755f5ef	["*"]	\N	\N	2025-07-13 20:16:06	2025-07-13 20:16:06
423	App\\Models\\User	272	Personal Access Token	cefd9e0a97b977dc413651b4f429e0aece527616df9c1ac456e19c7c5fa63e6f	["*"]	\N	\N	2025-07-13 21:01:37	2025-07-13 21:01:37
424	App\\Models\\User	272	Personal Access Token	b1138e862c2590cdfde999ed2f5c013e1ecca26629f6ccbd8bb31fb87740f741	["*"]	\N	\N	2025-07-13 21:01:42	2025-07-13 21:01:42
425	App\\Models\\User	268	Personal Access Token	b969205f043ab35812066b701e2e9494cff1e1afd19d4689a168463e18d66797	["*"]	\N	\N	2025-07-13 21:07:48	2025-07-13 21:07:48
426	App\\Models\\User	268	Personal Access Token	8632f3fe7e1ff2297e9fa0571cba62cfa4bee0a073ac22c690705b6090ab91d8	["*"]	\N	\N	2025-07-13 21:19:13	2025-07-13 21:19:13
427	App\\Models\\User	268	Personal Access Token	2b5b994afa68a61a346be524af4731c6a08cd0ff0c1ce61463200030283898f7	["*"]	\N	\N	2025-07-14 04:45:27	2025-07-14 04:45:27
428	App\\Models\\User	260	Personal Access Token	f22dd28291680f4df420c4c3319da6163d07f6efeb146c692af6ce82bb1ce21d	["*"]	\N	\N	2025-07-14 05:54:00	2025-07-14 05:54:00
\.


--
-- Data for Name: plan_durations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.plan_durations (id, pricing_plan_id, duration, price, status, created_at, updated_at) FROM stdin;
1	3	10	100	1	2025-04-18 05:22:42	2025-04-18 05:22:42
2	3	20	150	1	2025-04-18 05:23:01	2025-04-18 05:23:01
3	3	30	200	1	2025-04-18 05:23:18	2025-04-18 05:23:18
\.


--
-- Data for Name: popular_ads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.popular_ads (id, ad_id, category_id, created_at, updated_at) FROM stdin;
1	4	5	2025-03-27 04:32:07	2025-03-27 04:32:07
\.


--
-- Data for Name: pricing_plans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pricing_plans (id, name, name_ar, duration, price, currency, description, description_ar, status, created_at, updated_at, type) FROM stdin;
4	Basic	Basic	monthly	120	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li><li>Limited cloud storage (5 GB)</li><li>Email support</li></ul>	<p>Bsic</p>	1	2025-05-17 12:32:10	2025-06-09 09:08:25	basic
2	Standard	One month	quarterly	180	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	2025-04-07 14:20:29	2025-06-09 09:10:09	basic
1	Free	مجاناً	quarterly	0	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	2025-03-22 05:18:01	2025-06-09 09:11:08	free
3	Premium	غالي	quarterly	350	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	2025-04-10 09:40:59	2025-07-14 04:46:47	premium
\.


--
-- Data for Name: professions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.professions (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
1	Doctor	طبيب	1	\N	2025-05-05 06:13:21	2025-05-05 06:13:21
2	Nurse	ممرض	1	\N	2025-05-05 06:13:48	2025-05-05 06:13:48
3	Engineer	مهندس	1	\N	2025-05-05 06:14:06	2025-05-05 06:14:06
4	Teacher	معلم	1	\N	2025-05-05 06:14:29	2025-05-05 06:14:29
5	Lawyer	محامٍ	1	\N	2025-05-05 06:14:47	2025-05-05 06:14:47
\.


--
-- Data for Name: promo_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.promo_codes (id, code, type, value, start_date, end_date, total_limit, user_limit, daily_limit, status, created_at, updated_at, pricing_plan_id) FROM stdin;
1	50off	percentage	50	2025-03-20	2025-10-29	100	8	6	1	2025-03-20 15:15:07	2025-05-28 05:17:17	["4","3","2"]
\.


--
-- Data for Name: property_amenities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.property_amenities (id, name, name_ar, status, created_at, updated_at) FROM stdin;
1	Study	Study	1	2025-04-21 08:43:42	2025-04-21 08:43:42
2	Central A/C & Heating	Central A/C & Heating	1	2025-04-21 08:43:42	2025-04-21 08:43:42
3	Concierge Service	Concierge Service	1	2025-04-21 08:43:42	2025-04-21 08:43:42
4	Balcony	Balcony	1	2025-04-21 08:43:42	2025-04-21 08:43:42
5	Private Garden	Private Garden	1	2025-04-21 08:43:42	2025-04-21 08:43:42
6	Private Pool	Private Pool	1	2025-04-21 08:43:42	2025-04-21 08:43:42
7	Private Gym	Private Gym	1	2025-04-21 08:43:42	2025-04-21 08:43:42
8	Private Jacuzzi	Private Jacuzzi	1	2025-04-21 08:43:42	2025-04-21 08:43:42
9	Shared Pool	Shared Pool	1	2025-04-21 08:43:42	2025-04-21 08:43:42
10	Shared Spa	Shared Spa	1	2025-04-21 08:43:42	2025-04-21 08:43:42
11	Shared Gym	Shared Gym	1	2025-04-21 08:43:42	2025-04-21 08:43:42
12	Security	Security	1	2025-04-21 08:43:42	2025-04-21 08:43:42
13	Maid Service	Maid Service	1	2025-04-21 08:43:42	2025-04-21 08:43:42
14	Covered Parking	Covered Parking	1	2025-04-21 08:43:42	2025-04-21 08:43:42
15	Built in Wardrobes	Built in Wardrobes	1	2025-04-21 08:43:42	2025-04-21 08:43:42
16	Walk-in Closet	Walk-in Closet	1	2025-04-21 08:43:42	2025-04-21 08:43:42
17	Built in Kitchen Appliances	Built in Kitchen Appliances	1	2025-04-21 08:43:42	2025-04-21 08:43:42
18	View of Water	View of Water	1	2025-04-21 08:43:42	2025-04-21 08:43:42
19	View of Landmark	View of Landmark	1	2025-04-21 08:43:42	2025-04-21 08:43:42
20	Pets Allowed	Pets Allowed	1	2025-04-21 08:43:42	2025-04-21 08:43:42
21	Double Glazed Windows	Double Glazed Windows	1	2025-04-21 08:43:42	2025-04-21 08:43:42
22	Day Care Center	Day Care Center	1	2025-04-21 08:43:42	2025-04-21 08:43:42
23	Electricity Backup	Electricity Backup	1	2025-04-21 08:43:42	2025-04-21 08:43:42
24	First Aid Medical Center	First Aid Medical Center	1	2025-04-21 08:43:42	2025-04-21 08:43:42
25	Service Elevators	Service Elevators	1	2025-04-21 08:43:42	2025-04-21 08:43:42
26	Prayer Room	Prayer Room	1	2025-04-21 08:43:42	2025-04-21 08:43:42
27	Laundry Room	Laundry Room	1	2025-04-21 08:43:42	2025-04-21 08:43:42
28	Broadband Internet	Broadband Internet	1	2025-04-21 08:43:42	2025-04-21 08:43:42
29	Satellite / Cable TV	Satellite / Cable TV	1	2025-04-21 08:43:42	2025-04-21 08:43:42
30	Business Center	Business Center	1	2025-04-21 08:43:42	2025-04-21 08:43:42
31	Intercom	Intercom	1	2025-04-21 08:43:42	2025-04-21 08:43:42
32	ATM Facility	ATM Facility	1	2025-04-21 08:43:42	2025-04-21 08:43:42
33	Kids Play Area	Kids Play Area	1	2025-04-21 08:43:42	2025-04-21 08:43:42
34	Reception / Waiting Room	Reception / Waiting Room	1	2025-04-21 08:43:42	2025-04-21 08:43:42
35	Maintenance Staff	Maintenance Staff	1	2025-04-21 08:43:42	2025-04-21 08:43:42
36	CCTV Security	CCTV Security	1	2025-04-21 08:43:42	2025-04-21 08:43:42
37	Cafeteria or Canteen	Cafeteria or Canteen	1	2025-04-21 08:43:42	2025-04-21 08:43:42
38	Shared Kitchen	Shared Kitchen	1	2025-04-21 08:43:42	2025-04-21 08:43:42
39	Facilities for Disabled	Facilities for Disabled	1	2025-04-21 08:43:42	2025-04-21 08:43:42
40	Storage Areas	Storage Areas	1	2025-04-21 08:43:42	2025-04-21 08:43:42
41	Cleaning Services	Cleaning Services	1	2025-04-21 08:43:42	2025-04-21 08:43:42
42	Barbeque Area	Barbeque Area	1	2025-04-21 08:43:42	2025-04-21 08:43:42
43	Lobby in Building	Lobby in Building	1	2025-04-21 08:43:42	2025-04-21 08:43:42
44	Waste Disposal	Waste Disposal	1	2025-04-21 08:43:42	2025-04-21 08:43:42
\.


--
-- Data for Name: quotes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.quotes (id, name, email, from_lang, to_lang, total_pages, word_count, service_id, created_at, updated_at) FROM stdin;
1	John Doe	john@example.com	english	spanish	10	2000	5	2024-12-25 18:01:37	2024-12-25 18:01:37
2	tsttt	test@gmail.com	arabic	chinese	12	4	5	2024-12-25 18:05:07	2024-12-25 18:05:07
3	tsttt	test@gmail.com	arabic	chinese	12	4	5	2024-12-25 18:06:33	2024-12-25 18:06:33
4	asda	admin@hadify.com	arabic	chinese	12	12	5	2024-12-25 18:06:55	2024-12-25 18:06:55
7	asda	admin@tasheel.com	english	english	12	1234	5	2024-12-25 18:15:04	2024-12-25 18:15:04
8	asdad	admin@hadify.com	english	chinese	12	21	5	2024-12-25 18:15:55	2024-12-25 18:15:55
11	asdas	admin@admin.com	arabic	chinese	21	21	5	2024-12-25 18:21:56	2024-12-25 18:21:56
12	asdas	test@gmail.com	english	hindi	12	123	5	2024-12-25 18:24:26	2024-12-25 18:24:26
13	asdasd	admin@hadify.com	arabic	chinese	21	22	5	2024-12-25 18:26:24	2024-12-25 18:26:24
14	asda	admin@admin.com	english	chinese	21	22	5	2024-12-25 19:00:07	2024-12-25 19:00:07
15	testtttdesc	test@gmail.com	arabic	english,chinese	11	100	5	2024-12-25 21:05:10	2024-12-25 21:05:10
16	asdad	admin@admin.com	english	chinese,spanish	120	222222	9	2024-12-25 21:30:46	2024-12-25 21:30:46
17	testtstst	testing@gmail.com	Hindi	Spanish,Arabic	11	2222	9	2024-12-25 22:04:43	2024-12-25 22:04:43
\.


--
-- Data for Name: report_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.report_types (id, name, name_ar, status, created_at, updated_at) FROM stdin;
1	Something else	Something else	1	2025-05-31 13:14:59	2025-05-31 13:14:59
2	I just don't like it	I just don't like it	1	2025-05-31 13:15:15	2025-05-31 13:15:15
3	Scam or fraud	Scam or fraud	1	2025-05-31 13:15:41	2025-05-31 13:15:41
4	Bullying or harassment	Bullying or harassment	1	2025-05-31 13:15:54	2025-05-31 13:15:54
5	Soliciting	Soliciting	1	2025-05-31 13:16:08	2025-05-31 13:16:08
6	Hate speech	Hate speech	1	2025-05-31 13:16:24	2025-05-31 13:16:24
7	Nudity or sexual activity	Nudity or sexual activity	1	2025-05-31 13:16:41	2025-05-31 13:16:41
8	It’s spam	It’s spam	1	2025-05-31 13:16:56	2025-05-31 13:16:56
\.


--
-- Data for Name: reviews; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reviews (id, name, status, review, image, designation, rating, created_at, updated_at) FROM stdin;
1	Jacob Leonardo1	t	While running an early-stage startup, everything feels hard; that's why it's been so nice to have our accounting feel easy. We recommend Qetus	173568679567747a8b0bae6.png	CEO Founder	4.0	2024-12-31 23:12:17	2024-12-31 23:14:54
\.


--
-- Data for Name: role_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.role_has_permissions (permission_id, role_id) FROM stdin;
\.


--
-- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.roles (id, name, guard_name, created_at, updated_at) FROM stdin;
1	Admin	web	2024-12-05 15:22:16	2024-12-05 15:22:16
2	Customer	web	2024-12-05 15:22:16	2024-12-05 15:22:16
\.


--
-- Data for Name: sects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sects (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
2	Sunni	سني	1	\N	2025-05-03 10:30:10	2025-05-03 10:30:10
1	Shia (Shiite)	شيعي	1	\N	2025-05-03 05:49:46	2025-05-03 10:30:33
3	Ibadi	إباضي	1	\N	2025-05-03 10:30:49	2025-05-03 10:30:49
4	Ahmadiyya	الأحمدية	1	\N	2025-05-03 10:31:08	2025-05-03 10:31:08
5	Ismaili	إسماعيلي	1	\N	2025-05-03 10:31:25	2025-05-03 10:31:25
6	Zaydi	زيدي	1	\N	2025-05-03 10:31:42	2025-05-03 10:31:42
7	Salafi	سلفي	1	\N	2025-05-03 10:31:57	2025-05-03 10:31:57
8	Just Muslim	فقط مسلم	1	\N	2025-05-29 08:11:37	2025-05-29 08:11:37
\.


--
-- Data for Name: service_atributes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_atributes (id, service_id, name, status, created_at, updated_at, deleted_at) FROM stdin;
2	10	test	1	2025-01-29 10:50:25	2025-01-29 10:50:25	\N
3	10	test2	1	2025-01-31 01:59:15	2025-01-31 01:59:15	\N
4	10	test3	1	2025-01-31 01:59:30	2025-01-31 01:59:30	\N
5	9	test1	1	2025-01-31 02:00:22	2025-01-31 02:00:22	\N
6	9	test2	1	2025-01-31 02:00:57	2025-01-31 02:00:57	\N
7	11	Licence Type	1	2025-01-31 06:55:18	2025-01-31 06:55:18	\N
8	11	Region	1	2025-01-31 06:56:43	2025-01-31 06:56:43	\N
\.


--
-- Data for Name: service_atributes_value; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_atributes_value (id, service_id, attribute_id, name, status, created_at, updated_at, deleted_at, price) FROM stdin;
1	10	2	test	1	2025-01-31 01:52:54	2025-01-31 01:52:54	\N	0.00
2	9	5	test	1	2025-01-31 02:01:49	2025-01-31 02:02:11	\N	0.00
3	11	7	Local	1	2025-01-31 06:55:37	2025-01-31 06:55:37	\N	0.00
4	11	7	International	1	2025-01-31 06:55:55	2025-01-31 06:55:55	\N	0.00
5	11	8	West Branch	1	2025-01-31 06:57:31	2025-01-31 06:57:31	\N	0.00
6	11	8	Gaza	1	2025-01-31 06:57:46	2025-01-31 06:57:46	\N	0.00
7	11	7	Dubai	1	2025-02-11 14:55:07	2025-02-11 14:55:34	\N	13.01
\.


--
-- Data for Name: service_booking_fields; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_booking_fields (id, service_id, type, label, name, options, attribute_id, file_types, created_at, updated_at, field_id) FROM stdin;
37	11	text	Full Name	Full Name	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	0
38	11	text	Email	Email	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	1
39	11	text	Phone	Phone	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	2
40	11	text	City	City	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	3
41	11	select	Region	Region	\N	8	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	4
42	11	select	Licence Type	Licence Type	\N	7	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	5
43	11	text	Year Validity	Year Validity	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	6
44	11	file	Upload Licence	Upload Licence	\N	\N	png,pdf	2025-02-07 10:39:59	2025-02-07 10:39:59	7
\.


--
-- Data for Name: service_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_details (id, service_id, title, content, created_at, updated_at) FROM stdin;
35	9	asdasda	asdasdas	2024-12-26 18:03:14	2024-12-26 18:03:14
36	9	asdada	asdadadas	2024-12-26 18:03:14	2024-12-26 18:03:14
37	9	asdasda	adasdas	2024-12-26 18:03:14	2024-12-26 18:03:14
38	9	adasdas	asdasdadsasd	2024-12-26 18:03:14	2024-12-26 18:03:14
43	5	Background Checks	These cases are perfectly simple and easy to distinguish. In a free hour when our power.	2024-12-27 13:41:24	2024-12-27 13:41:24
44	5	Profile Assessments	Indignation and men who are so beguiled and demoralized by the charms blinded.	2024-12-27 13:41:24	2024-12-27 13:41:24
45	5	Position Description	Trouble that are bound to ensue and equal blame belongs those who fail in their duty.	2024-12-27 13:41:24	2024-12-27 13:41:24
46	5	HR Functions	<div class="description_box">\r\n                       <p>Nothing prevents our being able to do what we like best every pleasure is to be welcomed &amp; every pain avoided certain circumstances.</p>\r\n                    </div>\r\n                           <!--===============spacing==============-->\r\n                           <div class="pd_bottom_25"></div>\r\n                           <!--===============spacing==============-->\r\n                    <div class="content_box_cn style_one">\r\n                       <div class="txt_content">\r\n                          <h3>\r\n                             <a href="#" target="_blank" rel="nofollow">Open Communication</a>\r\n                          </h3>\r\n                          <p>Equal blame belongs to those who fail in their duty through weakness same duty.</p>\r\n                       </div>\r\n                    </div>\r\n                    \r\n                    <div class="content_box_cn  style_one">\r\n                       <div class="txt_content">\r\n                          <h3>\r\n                             <a href="#" target="_blank" rel="nofollow">Sharing a Vision</a>\r\n                          </h3>\r\n                          <p>Business it will frequently occur that pleasures have to be repudiated.</p>\r\n                       </div>\r\n                    </div>\r\n                    \r\n                    <div class="content_box_cn  style_one">\r\n                       <div class="txt_content">\r\n                          <h3>\r\n                             <a href="#" target="_blank" rel="nofollow">Recognizing Employee</a>\r\n                          </h3>\r\n                          <p>Holds in these matter to this principle selection he rejects pleasures to secure.</p>\r\n                       </div>\r\n                    </div>	2024-12-27 13:41:24	2024-12-27 13:41:24
47	10	asdasdasd	asdasdasasdads	2024-12-30 17:19:09	2024-12-30 17:19:09
48	10	asdasdas	adadasd	2024-12-30 17:19:09	2024-12-30 17:19:09
49	10	asdasdasd	adasdasdssas	2024-12-30 17:19:09	2024-12-30 17:19:09
50	10	adada	asdasdasd	2024-12-30 17:19:09	2024-12-30 17:19:09
51	11	asdasd	asdas	2025-01-31 06:54:00	2025-01-31 06:54:00
52	11	sdasd	asdas	2025-01-31 06:54:00	2025-01-31 06:54:00
53	11	sdas	asdasd	2025-01-31 06:54:00	2025-01-31 06:54:00
54	11	asdas	asdasdad	2025-01-31 06:54:00	2025-01-31 06:54:00
\.


--
-- Data for Name: service_faqs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_faqs (id, service_id, question, answer, created_at, updated_at) FROM stdin;
32	9	adadas	adasdas	2024-12-26 18:03:14	2024-12-26 18:03:14
33	9	adasd	adasdsa	2024-12-26 18:03:14	2024-12-26 18:03:14
36	5	Who is Tasheel Legal Transilation?1	Nor again is there anyone who loves or pursues or desires to obtain\r\n                                       pain itself because it is pains but because occasionally circumstances\r\n                                       occurs great pleasure take a trivial of us.	2024-12-27 13:41:24	2024-12-27 13:41:24
37	5	What recruitment services do you offer?	Serenity Is Multi-Faceted Blockchain Based Ecosystem, Energy Retailer For The People, Focusing On The Promotion Of Sustainable Living, Renewable Energy Production And Smart Energy Grid Utility Services.	2024-12-27 13:41:24	2024-12-27 13:41:24
38	5	How can I register a job?	Serenity Is Multi-Faceted Blockchain Based Ecosystem, Energy Retailer For The People, Focusing On The Promotion Of Sustainable Living, Renewable Energy Production And Smart Energy Grid Utility Services.	2024-12-27 13:41:24	2024-12-27 13:41:24
39	10	asdas	adasda	2024-12-30 17:19:09	2024-12-30 17:19:09
40	10	adad	adasdasds	2024-12-30 17:19:09	2024-12-30 17:19:09
41	11	sdasdas	sdasda	2025-01-31 06:54:00	2025-01-31 06:54:00
42	11	sdasd	sdas	2025-01-31 06:54:00	2025-01-31 06:54:00
\.


--
-- Data for Name: service_pricing; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_pricing (id, service_id, translation_from, translation_to, price, status, created_at, updated_at) FROM stdin;
1	2	3	5	12.00	1	2024-12-26 15:20:56	2024-12-26 17:46:05
2	2	1	4	120.00	1	2024-12-27 13:40:43	2024-12-27 13:40:43
3	2	1	5	12.00	1	2024-12-27 13:41:04	2024-12-27 13:41:04
4	5	5	4	20.00	1	2025-01-31 07:30:06	2025-01-31 07:30:06
\.


--
-- Data for Name: services; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services (id, title, service_type_id, subtitle, description, status, created_at, updated_at, background_image, service_image, other_image, price_from, price_to) FROM stdin;
5	Legal Translation	2	Specialized translation of legal documents ensuring accuracy and compliance with legal standards.	<p><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">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.<br></span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">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.<br></span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">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.</span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;"></span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;"></span></p>	1	2024-12-24 11:56:22	2024-12-27 13:41:24	1735143740676c313cd5177.jpg	1735143741676c313da2f92.jpg	1735143741676c313da32d3.jpg	20	60
9	Certified Translation	3	Specialized translation of legal documents ensuring accuracy and compliance with legal standards.	<p><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">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.</span></p>	1	2024-12-25 21:28:53	2024-12-26 18:03:14	1735162133676c79155404a.jpg	1735166702676c8aeea206a.jpg	1735162133676c791556ffc.jpg	10	1000
10	Police verification	4	asdasdada	<p>dsasdasdasdasdasdasdasdadads</p>	1	2024-12-26 17:58:48	2024-12-30 17:19:09	1735235927676d9957b92a2.jpg	1735235928676d995883e55.jpg	1735235928676d995884186.png	12	123
11	Driving License (Local/ International)	5	Driving License (Local/ International)	<p><span style="color: rgb(33, 37, 41); font-family: Poppins, sans-serif; text-wrap-mode: nowrap;">Driving License (Local/ International)</span></p>	1	2025-01-31 06:54:00	2025-01-31 06:54:00	1738306439679c7387490c7.jpg	1738306440679c738802f0c.png	1738306440679c7388032f5.jpg	12	120
\.


--
-- Data for Name: services_bookings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services_bookings (id, service_id, created_at, updated_at, booking_id, first_name, last_name, company_name, country, street_address, apartment, city, state, phone, email, file_namesconfirm, order_notes, total, status) FROM stdin;
21	11	2025-02-05 16:33:15	2025-02-05 16:33:15	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
22	11	2025-02-05 16:39:55	2025-02-05 16:39:55	#TS437031098	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
23	11	2025-02-07 06:56:19	2025-02-07 06:56:19	#TS630711806	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
24	11	2025-02-07 06:57:08	2025-02-07 06:57:08	#TS773525448	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
25	11	2025-02-08 11:26:14	2025-02-08 11:26:14	#TS562287691	Shay	Stanton	Hubbard Delaney Inc	UAE1	Eos do unde ut arch	Excepteur commodo ma	Est voluptas quia ac	Culpa eaque fuga B	+1 (714) 523-4407	wypacyje@mailinator.com	\N	Non ipsa dolore opt	0.00	Pending
26	11	2025-02-08 11:38:30	2025-02-08 11:38:30	#TS269568670	Simone	Wood	Lott Mckay Co	Maskat	Nihil est rerum dol	Odio sit inventore	Rerum est ad quam q	Dolore voluptate fug	+1 (997) 255-9662	zupujugix@mailinator.com	\N	Dolore ut et est cup	0.00	Pending
27	11	2025-02-08 11:39:36	2025-02-08 11:39:36	#TS285620534	Darrel	Todd	Burch Rocha Inc	Maskat	Aut veniam similiqu	Sed eum qui eos sunt	Ea sunt sunt aut et	Eos iure aliquam ass	+1 (805) 183-6762	lupavub@mailinator.com	\N	Ipsa sint voluptate	0.00	Pending
28	11	2025-02-08 11:41:42	2025-02-08 11:41:42	#TS498467896	Ivy	Barrera	Lewis Frederick LLC	UAE1	Qui nemo saepe offic	Esse ut omnis sunt e	Impedit odio eaque	Obcaecati possimus	+1 (564) 226-3612	nypera@mailinator.com	\N	Architecto deserunt	0.00	Pending
29	11	2025-02-08 11:44:18	2025-02-08 11:44:18	#TS260540127	Sopoline	Snyder	Emerson Snyder Plc	Camilla Benton	Doloremque nemo sint	Quidem ab exercitati	Neque ad sed consequ	Natus proident ipsu	+1 (747) 326-3428	qypixuzym@mailinator.com	\N	Tenetur sint cupidit	0.00	Pending
30	11	2025-02-08 11:47:21	2025-02-08 11:47:21	#TS809715464	Miranda	Gates	Holloway and Mcdowell Inc	Canada	Sed eu qui officiis	Eos in cupiditate pr	Lorem repellendus D	Pariatur A neque as	+1 (212) 482-6149	cahily@mailinator.com	\N	Quisquam et ipsa co	0.00	Pending
31	11	2025-02-11 15:41:54	2025-02-11 15:41:54	#TS448681406	Griffith	Duffy	Mann Simon LLC	Canada	Enim quibusdam occae	Laboris nihil conseq	A blanditiis quibusd	Aliquip ut fugit ip	+1 (736) 859-3897	nymogujig@mailinator.com	\N	Incididunt do quia a	13.01	Pending
32	11	2025-02-11 15:45:12	2025-02-11 15:59:47	#TS753416093	Kiona	Keith	Byers and Mueller LLC	Maskat	Qui ipsum qui eaque	Labore ut incidunt	Odio praesentium ips	Culpa reprehenderit	+1 (102) 366-3044	guqelupek@mailinator.com	\N	Dolorem sed culpa do	13.01	Ready for Delivery
\.


--
-- Data for Name: services_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services_types (id, name, status, created_at, updated_at) FROM stdin;
2	Legal Translation	1	2024-12-26 15:48:42	2024-12-26 17:43:28
3	Certified Translation	1	2024-12-26 17:43:45	2024-12-26 17:43:45
4	Police verification	1	2024-12-30 17:18:41	2024-12-30 17:18:41
5	Driving License (Local/ International)	1	2025-01-31 06:52:08	2025-01-31 06:52:08
\.


--
-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sessions (id, user_id, ip_address, user_agent, payload, last_activity) FROM stdin;
ZYVP9GvIxVzmzQVPmhHihL4i8cHFVaDNx4MrYYBB	\N	52.112.49.157	Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com	YTo0OntzOjY6Il90b2tlbiI7czo0MDoic3BaQWFnTkVBRHNIeEdCcWxSbFZ2ME03ZWdaUTB5WVYzeVgzSzdGUCI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo1ODoiaHR0cHM6Ly9keGJpdHByb2plY3RzLmNvbS9sdXFpYS9wdWJsaWMvYWRtaW4vYmFkZ2VzL2VkaXQvMSI7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjU4OiJodHRwczovL2R4Yml0cHJvamVjdHMuY29tL2x1cWlhL3B1YmxpYy9hZG1pbi9iYWRnZXMvZWRpdC8xIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==	1752470448
J5En7GFfujH0qhq4nFiwJFeu62H7nyyhJs9ILQpL	1	59.88.105.33	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoiY3M2V3FwRWdsRTZ3a2NENU1uYmtHdU9VUUdSeXdBMmlhandYb29ROSI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo1MjoiaHR0cHM6Ly9keGJpdHByb2plY3RzLmNvbS9sdXFpYS9wdWJsaWMvYWRtaW4vc3VwcG9ydCI7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjU4OiJodHRwczovL2R4Yml0cHJvamVjdHMuY29tL2x1cWlhL3B1YmxpYy9hZG1pbi9iYWRnZXMvZWRpdC8xIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czo1MDoibG9naW5fd2ViXzU5YmEzNmFkZGMyYjJmOTQwMTU4MGYwMTRjN2Y1OGVhNGUzMDk4OWQiO2k6MTt9	1752472645
NXtDIIR4mh5edp42JlvVAptwx31dVwyvpcg50Nuq	1	59.88.105.33	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoiY2lDaDBMd2tEZTBieVF1b091R2dwV1NGcGpkRmxtRHY5TGk2eTFiRiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NjE6Imh0dHBzOi8vZHhiaXRwcm9qZWN0cy5jb20vbHVxaWEvcHVibGljL2FkbWluL2hvbWVsb2dvcy9lZGl0LzEiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjM6InVybCI7YToxOntzOjg6ImludGVuZGVkIjtzOjUyOiJodHRwczovL2R4Yml0cHJvamVjdHMuY29tL2x1cWlhL3B1YmxpYy9hZG1pbi9zdXBwb3J0Ijt9czo1MDoibG9naW5fd2ViXzU5YmEzNmFkZGMyYjJmOTQwMTU4MGYwMTRjN2Y1OGVhNGUzMDk4OWQiO2k6MTt9	1752422835
lzFz2teRCYmMhrlfDANOJLOsPSbI6kUOSgL9Vxbz	\N	49.37.227.13	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTozOntzOjY6Il90b2tlbiI7czo0MDoiblRKaEhrcEo5Nkl4ejBCU1lEUjQ3OEJJRDM3c05YSnVDQU52bGZnNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NTA6Imh0dHBzOi8vZHhiaXRwcm9qZWN0cy5jb20vbHVxaWEvcHVibGljL2FkbWluL2xvZ2luIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==	1752440198
xBjAyRDhe7NAc1aM18JvOyTqxT9oeLpJuL5h1Odj	1	49.37.227.13	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoiSVhwMXIyVmYzak1OamJWRHd4RXpYY0x0WWVUbm1ETThmekN3Y2tDeCI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo1MDoiaHR0cHM6Ly9keGJpdHByb2plY3RzLmNvbS9sdXFpYS9wdWJsaWMvYWRtaW4vc2VjdHMiO31zOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czo1MzoiaHR0cHM6Ly9keGJpdHByb2plY3RzLmNvbS9sdXFpYS9wdWJsaWMvYWRtaW4vZW1pcmF0ZXMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO30=	1752416035
vT7YLoXlegeQrv1QhxuFupKgoFEguWm8XeecW5bI	1	49.37.227.13	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoielplVTJnRDdsejhaUjNjYXRLRFcwN0NMVHpIMzliclpOQjZXbWJqNyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NTg6Imh0dHBzOi8vZHhiaXRwcm9qZWN0cy5jb20vbHVxaWEvcHVibGljL2FkbWluL2JhZGdlcy9lZGl0LzIiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjM6InVybCI7YToxOntzOjg6ImludGVuZGVkIjtzOjUzOiJodHRwczovL2R4Yml0cHJvamVjdHMuY29tL2x1cWlhL3B1YmxpYy9hZG1pbi9lbWlyYXRlcyI7fXM6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjE7fQ==	1752472699
E6gBNHKxhXJItzAo36JfKMWZbY5QLNThM4qmqgwK	1	206.168.201.82	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoibXVHRENvSjlENzg2RzBXOHZheGNzZk53VzB0dXBQbFE1eTU5RjN2SSI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo2MjoiaHR0cHM6Ly9keGJpdHByb2plY3RzLmNvbS9sdXFpYS9wdWJsaWMvYWRtaW4vdXNlcnMvZGV0YWlscy8xNzUiO31zOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czo1ODoiaHR0cHM6Ly9keGJpdHByb2plY3RzLmNvbS9sdXFpYS9wdWJsaWMvYWRtaW4vbm90aWZpY2F0aW9ucyI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjE7fQ==	1752413686
\.


--
-- Data for Name: site_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.site_settings (id, key, value, created_at, updated_at) FROM stdin;
1	email	info@tasheel.ps	2024-12-22 03:16:13	2024-12-22 03:19:21
2	phone_number	+972 56 220 0190	2024-12-22 03:16:13	2024-12-22 03:19:21
3	landline_number	0 229 1234	2024-12-22 03:16:13	2024-12-22 03:19:21
4	whatsapp_number	972562200190	2024-12-22 03:16:13	2024-12-22 03:19:21
5	facebook_url	https://www.facebook.com/	2024-12-22 03:16:13	2024-12-22 03:19:21
6	instagram_url	https://www.instagram.com/	2024-12-22 03:16:13	2024-12-22 03:19:21
\.


--
-- Data for Name: slider_items; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.slider_items (id, slider_id, name, image, status, created_at, updated_at, deleted_at) FROM stdin;
1	1	Page 1	UpvZHP7lY0rKEMLYy0KSIZpXR8l7uWO1KJugDIg4.png	1	2025-03-26 06:12:52	2025-03-26 06:12:52	\N
\.


--
-- Data for Name: sliders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sliders (id, name, category_id, status, created_at, updated_at, deleted_at) FROM stdin;
1	Main Page	5	1	2025-03-26 06:12:32	2025-03-26 06:12:32	\N
\.


--
-- Data for Name: sports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sports (id, name, name_ar, status, deleted_at, created_at, updated_at, image) FROM stdin;
1	Rugby	الرجبي	1	\N	2025-05-05 08:17:37	2025-06-06 11:23:29	6842cfb1bd5cd_1749209009.png
6	Cycling	ركوب الدراجات	1	\N	2025-05-05 08:21:02	2025-06-06 11:25:12	6842d01871839_1749209112.png
2	Swimming	السباحة	1	\N	2025-05-05 08:18:20	2025-06-06 11:27:53	6842d0b9cf011_1749209273.png
3	Tennis	التنس	1	\N	2025-05-05 08:18:48	2025-06-06 11:28:48	6842d0f0b6ccb_1749209328.png
4	Footballs	كرة القدم	1	\N	2025-05-05 08:19:42	2025-06-06 11:30:06	6842d13e5c545_1749209406.png
5	Boxing	الملاكمة	1	\N	2025-05-05 08:20:16	2025-06-07 11:27:36	684422289c8e0_1749295656.png
\.


--
-- Data for Name: support_tickets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.support_tickets (id, ticket_number, user_id, subject, description, status, created_at, updated_at) FROM stdin;
1	SP-000001	215	Hello	hello	1	2025-06-04 07:09:04	2025-06-04 07:09:04
2	SP-000002	233	Fggghhhh	fgghhhhhhhhhhjj	1	2025-06-05 09:29:07	2025-06-05 09:29:07
3	SP-000003	243	Hello	hello	1	2025-06-09 09:45:25	2025-06-09 09:45:25
4	SP-000004	244	Lucia support	Lucia supports	1	2025-06-11 06:22:32	2025-06-11 06:22:32
5	SP-000005	267	Bgfgvvvv	ccgv.     chihtffg	1	2025-07-13 08:18:32	2025-07-13 08:18:32
6	SP-000006	268	Fffggg	fffggg	1	2025-07-13 21:28:05	2025-07-13 21:28:05
7	SP-000007	270	Nnn	vvb	1	2025-07-14 05:19:02	2025-07-14 05:19:02
8	SP-000008	270	Ubbb	bbbn	1	2025-07-14 05:25:41	2025-07-14 05:25:41
\.


--
-- Data for Name: target_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.target_types (id, name, status, created_at, updated_at) FROM stdin;
3	KM1	1	2024-12-10 17:22:23	2024-12-17 19:57:14
4	Floor	1	2024-12-10 17:22:38	2024-12-16 14:21:51
\.


--
-- Data for Name: target_types_company; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.target_types_company (id, company_id, name, status, created_at, updated_at) FROM stdin;
2	23	test1	1	2024-12-16 03:21:20	2024-12-16 03:21:20
3	23	test	1	2024-12-16 03:22:50	2024-12-16 03:22:50
\.


--
-- Data for Name: temp_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.temp_orders (id, plan_id, user_id, duration_id, duration, payment_method, total_price, currency, discount, promo_code, grand_total, status, transaction_id, created_at, updated_at) FROM stdin;
2	2	157	\N	monthly	1	100.00	AED	0.00	\N	100.00	pending	157683448ae31abd1748256942	2025-05-26 10:55:42	2025-05-26 10:55:42
\.


--
-- Data for Name: temp_users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.temp_users (id, name, nick_name, dial_code, phone, email, gender, password, dob, country_id, user_phone_otp, user_email_otp, user_device_type, user_device_token, created_at, updated_at, parent_name, parent_email) FROM stdin;
13	Hamid	Raza	971	344156258	dx010@gmail.com	Male	$2y$12$vabS2SvVct7Y32qxkQYT2.OjyaKrNV9RDmeHok2bcukgSYUutNki.	1996-01-12	169	1111	1111	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	2025-05-26 20:26:29	2025-05-26 20:26:29	\N	\N
14	Hamid	Raza	971	346767667	dx011@gmail.com	Female	$2y$12$3e6uF0EvI3u7.5D6q7Iuf.R4IJbtsDjtBBsg5t99nvLxkR/27vPRG	1996-01-12	169	1111	1111	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	2025-05-26 22:27:58	2025-05-26 22:27:58	\N	\N
11	Anil navus	anol	971	564005096	anilnavis@gmail.com	Male	$2y$12$4yd61GBO10vcoeVu3h6st.KHuVz6NmFAtP370v1OM6KuozOZqsGsm	2005-04-28	237	1111	1111	android	eiOF59gkTGqfbdSZdrLNls:APA91bEx3h6giVdpTJIbE5Rh4U-nWXEYanmnY0K4hz3APy03-UbtCUozBFUtYBmadn67NibskHczSAgQ9_hJSbesCpPHqwfSir68XMTjohay9mCAnzAtzR0	2025-05-24 15:33:17	2025-05-27 04:42:01	\N	\N
98	Asad	Asadz	971	344156069	asdf@gmail.com	Male	$2y$12$hDSn8cf9BKnLa6h0vHOQDOuaRLQi76DlodQf.TZdhwc.d5V0RdOwq	2007-06-28	237	1111	1111	android	cBEeU5drQ7-a2NQAotWASp:APA91bGAaippZcniJOtecVCBuiF6gUUB9mifn__uExHkttBYdlw4yJBDqUM4tjpaiixR2flQLzGsABcvG-fk0y_Vmav_MsnsP2OhbI1gcuADB6aNzGvlKlU	2025-06-27 19:18:31	2025-06-27 19:18:31		
33	Ariba Ahmed	Ariba	971	561660144	ariba@gmail.com	Female	$2y$12$DcY4Tkb13r7LCkhzpbeteurs5d/3xreOm59Ai.SlqbXuAaWG7XJ2e	2000-08-29	237	1111	1111	android	dLmseM_4RoK4qQSvabmirh:APA91bHLxQYEYc4kIUfLX0oqDZUY2AUTtmDU2jKMjIJDH0vxcVXBThVpcQWjjE0FhARqWhijFcbEGOu2eA1yY7MqmTn7c3gN2eSBn3AM_uhBsy4ohNZqn9k	2025-05-28 06:47:11	2025-05-28 06:47:11	Ahmed khan	hibadxba@hotmail.com
55	Mudassar Zahid	Mudassar	+971	1633481285	mudasserzahid48+23@gmail.com	Male	$2y$12$LXF4f5u6.wCeDNvLKOGdMu0bCLmuGDYbWkVnEobvQQbMtotpets2a	1994-05-25	1	1111	1111	android	asdfasdfasd	2025-05-30 14:02:28	2025-05-30 14:02:28		
56	Mudassar Zahid	Mudassar	+971	1633481286	mudasserzahid48+24@gmail.com	Male	$2y$12$i3MS4hG1xCA.7agtPC1c8eXvIlf8uhscWVCLHak4EwkD9rnlUTCg2	1994-05-25	1	1111	1111	android	asdfasdfasd	2025-05-30 14:05:02	2025-05-30 14:05:02		
\.


--
-- Data for Name: translation_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translation_types (id, name, description, price_type, price, percentage, category, status, created_at, updated_at) FROM stdin;
1	test	testsada	rush_fee	\N	30.00	default-category	1	2024-12-26 16:53:41	2024-12-26 16:53:41
3	EXPEDITED	15 - 24 hours Tomorrow at 7:52 PM (latest)	rush_fee	\N	30.00	only_translation	1	2024-12-26 17:12:44	2024-12-27 19:07:15
4	EXPEDITED	15 - 24 hours Tomorrow at 7:52 PM (latest)	rush_fee	\N	30.00	notarized	1	2024-12-26 17:13:03	2024-12-30 10:28:50
5	STANDARD	1 - 2 days Monday at 7:52 PM (latest)	free	0.00	\N	notarized	1	2024-12-26 17:31:22	2024-12-27 19:23:44
7	STANDARD	1 - 2 days Monday at 7:52 PM (latest)	free	0.00	\N	certified	1	2024-12-26 17:33:22	2024-12-27 19:00:22
8	EXPEDITED	15 - 24 hours Tomorrow at 7:52 PM (latest)	rush_fee	\N	30.00	certified	1	2024-12-27 19:00:53	2024-12-27 20:02:30
11	STANDARD	1 - 2 days Monday at 7:52 PM (latest)	free	0.00	\N	only_translation	1	2024-12-27 19:02:53	2024-12-27 19:02:53
\.


--
-- Data for Name: translation_types_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translation_types_categories (id, name, slug, status, created_at, updated_at, description, price_type, price, percentage) FROM stdin;
2	CERTIFIED	certified	1	2024-12-30 10:26:55	2024-12-31 10:34:42	Includes an official coversheet with the company header, stamp, and signature from a Licensed Translator, accredited by the Palestinian Ministry of Justice.	free	0.00	0.00
3	ONLY TRANSLATION	only_translation	1	2024-12-30 10:27:33	2024-12-31 10:35:30	For those who need only professional translation.	free	0.00	0.00
5	NOTARIZED	notarized	1	2024-12-30 10:31:48	2024-12-31 10:35:55	Includes an official cover page with a red seal, stamped with the signature of the licensed Notary Public.	fixed	25.00	0.00
\.


--
-- Data for Name: user_activities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_activities (id, user_id, activity_id, created_at, updated_at) FROM stdin;
1	35	1	2025-03-11 17:18:40	2025-03-11 17:18:40
3	157	5	\N	\N
5	157	3	\N	\N
9	171	5	\N	\N
10	171	9	\N	\N
11	173	1	\N	\N
12	173	2	\N	\N
13	173	3	\N	\N
14	173	5	\N	\N
15	173	7	\N	\N
16	174	6	\N	\N
17	174	3	\N	\N
20	177	3	\N	\N
21	177	7	\N	\N
22	177	1	\N	\N
23	177	6	\N	\N
26	176	6	\N	\N
27	181	6	\N	\N
28	181	3	\N	\N
29	181	5	\N	\N
30	179	3	\N	\N
31	50	7	\N	\N
32	50	4	\N	\N
33	50	3	\N	\N
34	50	6	\N	\N
35	189	4	\N	\N
36	189	7	\N	\N
37	189	3	\N	\N
38	189	6	\N	\N
39	191	7	\N	\N
42	193	9	\N	\N
43	193	1	\N	\N
44	193	6	\N	\N
45	194	5	\N	\N
46	194	7	\N	\N
47	194	9	\N	\N
48	195	1	\N	\N
49	195	3	\N	\N
50	195	6	\N	\N
51	196	1	\N	\N
52	196	3	\N	\N
53	197	3	\N	\N
54	197	6	\N	\N
55	200	9	\N	\N
56	200	3	\N	\N
57	200	1	\N	\N
58	200	5	\N	\N
59	202	1	\N	\N
60	202	3	\N	\N
61	202	9	\N	\N
62	209	6	\N	\N
63	209	7	\N	\N
68	212	1	\N	\N
69	212	7	\N	\N
70	212	9	\N	\N
71	215	7	\N	\N
76	216	9	\N	\N
78	53	1	\N	\N
79	53	5	\N	\N
81	211	5	\N	\N
91	216	4	\N	\N
92	216	7	\N	\N
93	214	1	\N	\N
94	214	5	\N	\N
95	214	6	\N	\N
96	219	1	\N	\N
97	219	5	\N	\N
98	223	9	\N	\N
99	223	5	\N	\N
100	223	6	\N	\N
101	224	6	\N	\N
102	224	3	\N	\N
104	222	1	\N	\N
105	222	3	\N	\N
106	222	5	\N	\N
107	222	6	\N	\N
108	229	5	\N	\N
109	229	9	\N	\N
110	230	1	\N	\N
111	230	3	\N	\N
112	230	9	\N	\N
113	231	1	\N	\N
114	231	5	\N	\N
115	232	3	\N	\N
116	232	6	\N	\N
117	233	9	\N	\N
118	233	5	\N	\N
119	233	1	\N	\N
120	234	6	\N	\N
121	234	9	\N	\N
122	237	1	\N	\N
123	237	3	\N	\N
124	237	5	\N	\N
125	237	7	\N	\N
126	238	1	\N	\N
127	238	5	\N	\N
128	239	1	\N	\N
129	239	5	\N	\N
130	192	1	\N	\N
131	192	5	\N	\N
132	241	1	\N	\N
133	241	7	\N	\N
134	242	3	\N	\N
135	243	6	\N	\N
136	243	9	\N	\N
137	243	1	\N	\N
138	244	6	\N	\N
139	244	7	\N	\N
140	246	3	\N	\N
141	246	1	\N	\N
142	246	5	\N	\N
143	246	7	\N	\N
144	246	9	\N	\N
145	246	6	\N	\N
146	245	3	\N	\N
147	245	5	\N	\N
148	245	9	\N	\N
149	247	9	\N	\N
150	247	5	\N	\N
151	249	3	\N	\N
152	249	6	\N	\N
153	250	6	\N	\N
154	250	3	\N	\N
155	253	1	\N	\N
156	253	5	\N	\N
157	253	6	\N	\N
158	254	1	\N	\N
159	254	5	\N	\N
160	254	6	\N	\N
161	262	1	\N	\N
162	262	5	\N	\N
163	262	6	\N	\N
164	263	6	\N	\N
165	263	1	\N	\N
166	264	1	\N	\N
167	264	9	\N	\N
168	264	5	\N	\N
170	267	1	\N	\N
171	267	6	\N	\N
172	268	1	\N	\N
173	268	5	\N	\N
174	269	9	\N	\N
175	269	5	\N	\N
176	269	6	\N	\N
177	270	9	\N	\N
178	270	6	\N	\N
179	271	1	\N	\N
180	271	6	\N	\N
181	272	1	\N	\N
182	272	3	\N	\N
\.


--
-- Data for Name: user_blocks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_blocks (id, user_id, blocked_user_id, reason, created_at, updated_at) FROM stdin;
1	179	197	\N	2025-05-29 18:31:58	2025-05-29 18:31:58
2	193	197	\N	2025-05-30 10:34:08	2025-05-30 10:34:08
3	193	196	\N	2025-05-30 11:02:08	2025-05-30 11:02:08
4	53	51	\N	2025-05-30 11:43:32	2025-05-30 11:43:32
6	53	55	reason	2025-05-31 13:54:47	2025-05-31 13:54:47
7	53	56	reason	2025-05-31 14:07:46	2025-05-31 14:07:46
5	192	51	reason	2025-05-31 14:07:47	2025-05-31 14:07:47
8	219	215	\N	2025-06-04 08:44:39	2025-06-04 08:44:39
9	197	222	\N	2025-06-04 15:20:32	2025-06-04 15:20:32
10	197	192	\N	2025-06-04 15:22:42	2025-06-04 15:22:42
11	211	197	\N	2025-06-04 15:36:29	2025-06-04 15:36:29
12	216	215	\N	2025-06-05 08:50:53	2025-06-05 08:50:53
13	210	211	\N	2025-06-05 08:53:04	2025-06-05 08:53:04
14	239	192	Bullying or harassment	2025-06-06 12:54:56	2025-06-06 12:54:56
15	244	264	I just don't like it	2025-07-12 09:59:50	2025-07-12 09:59:50
\.


--
-- Data for Name: user_children; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_children (id, user_id, kid_count, age, created_at, updated_at) FROM stdin;
1	50	2	1-7	2025-05-28 17:11:23	2025-05-28 17:11:23
4	53	2	5	2025-06-03 09:27:34	2025-06-03 09:27:34
5	53	1	3	2025-06-03 09:27:34	2025-06-03 09:27:34
13	211	5	9-15	2025-06-05 16:43:41	2025-06-05 16:43:41
22	192	2	5	2025-06-06 11:11:07	2025-06-06 11:11:07
23	192	1	3	2025-06-06 11:11:07	2025-06-06 11:11:07
24	240	1	1-8	2025-06-06 11:39:17	2025-06-06 11:39:17
25	240	2	16-25	2025-06-06 11:39:17	2025-06-06 11:39:17
27	243	1	9-15	2025-06-09 09:21:11	2025-06-09 09:21:11
30	244	1	1-8	2025-06-10 09:24:05	2025-06-10 09:24:05
31	244	1	16-25	2025-06-10 09:24:05	2025-06-10 09:24:05
32	246	1	9-15	2025-06-11 10:05:40	2025-06-11 10:05:40
33	249	1	1-8	2025-06-28 13:13:26	2025-06-28 13:13:26
34	249	1	9-15	2025-06-28 13:13:26	2025-06-28 13:13:26
38	252	2	9-15	2025-07-10 06:32:52	2025-07-10 06:32:52
39	253	2	1-8	2025-07-10 15:11:20	2025-07-10 15:11:20
40	254	2	1-8	2025-07-11 11:28:36	2025-07-11 11:28:36
41	263	1	9-15	2025-07-12 08:31:25	2025-07-12 08:31:25
42	263	1	16-25	2025-07-12 08:31:25	2025-07-12 08:31:25
43	264	1	1-8	2025-07-12 09:03:27	2025-07-12 09:03:27
44	264	1	16-25	2025-07-12 09:03:27	2025-07-12 09:03:27
46	267	1	1-8	2025-07-13 08:17:43	2025-07-13 08:17:43
47	267	1	9-15	2025-07-13 08:17:43	2025-07-13 08:17:43
48	268	1	1-8	2025-07-13 11:11:21	2025-07-13 11:11:21
49	271	1	1-8	2025-07-13 20:28:07	2025-07-13 20:28:07
\.


--
-- Data for Name: user_connection; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_connection (id, user_id, connected_user_id, is_blocked, reason, hide_image, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: user_connections; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_connections (id, user_id, connected_user_id, created_at, updated_at, hide_image) FROM stdin;
57	230	219	2025-06-05 07:22:04	2025-06-05 07:22:04	0
125	245	244	2025-07-11 15:01:53	2025-07-11 15:01:53	0
126	244	245	2025-07-11 15:01:53	2025-07-11 15:01:53	0
8	179	197	2025-05-29 18:23:35	2025-05-29 18:23:35	0
58	219	230	2025-06-05 07:22:04	2025-06-05 07:23:41	1
11	197	193	2025-05-30 10:33:55	2025-05-30 10:33:55	0
12	193	197	2025-05-30 10:33:55	2025-05-30 10:33:55	0
63	210	232	2025-06-05 09:05:25	2025-06-05 09:05:25	0
76	192	210	2025-06-05 13:21:09	2025-06-06 12:22:22	1
173	262	260	2025-07-13 10:28:58	2025-07-13 10:28:58	0
174	260	262	2025-07-13 10:28:58	2025-07-13 10:28:58	0
68	215	233	2025-06-05 09:36:16	2025-06-05 09:36:16	0
67	233	215	2025-06-05 09:36:16	2025-06-05 09:45:13	1
185	265	211	2025-07-13 14:08:56	2025-07-13 14:08:56	0
87	243	215	2025-06-09 09:50:19	2025-06-09 10:29:53	0
186	211	265	2025-07-13 14:08:56	2025-07-13 14:08:56	0
88	215	243	2025-06-09 09:50:19	2025-06-09 10:30:53	1
7	197	179	2025-05-29 18:23:35	2025-06-04 07:40:45	1
189	268	272	2025-07-13 21:09:30	2025-07-13 21:09:30	0
64	232	210	2025-06-05 09:05:25	2025-06-05 13:18:34	0
41	219	215	2025-06-04 08:57:04	2025-06-04 08:57:04	0
42	215	219	2025-06-04 08:57:04	2025-06-04 08:57:04	0
45	222	215	2025-06-04 10:54:19	2025-06-04 10:54:19	0
46	215	222	2025-06-04 10:54:19	2025-06-04 10:54:19	0
90	243	242	2025-06-09 10:33:40	2025-06-09 10:34:42	0
190	272	268	2025-07-13 21:09:30	2025-07-13 21:09:30	0
191	271	268	2025-07-13 21:20:02	2025-07-13 21:20:02	0
89	242	243	2025-06-09 10:33:40	2025-06-09 10:53:02	0
192	268	271	2025-07-13 21:20:02	2025-07-13 21:20:02	0
93	244	215	2025-06-10 13:15:33	2025-06-10 13:15:33	0
94	215	244	2025-06-10 13:15:33	2025-06-10 13:15:33	0
95	230	244	2025-06-11 08:02:40	2025-06-11 08:02:40	0
96	244	230	2025-06-11 08:02:40	2025-06-11 08:02:40	0
75	210	192	2025-06-05 13:21:09	2025-06-05 15:04:11	1
99	245	246	2025-06-11 10:21:56	2025-06-11 10:21:56	0
100	246	245	2025-06-11 10:21:56	2025-06-11 10:21:56	0
101	252	224	2025-07-10 12:09:47	2025-07-10 12:09:47	0
102	224	252	2025-07-10 12:09:47	2025-07-10 12:09:47	0
109	245	216	2025-07-11 08:00:14	2025-07-11 08:00:14	0
110	216	245	2025-07-11 08:00:14	2025-07-11 08:00:14	0
111	254	216	2025-07-11 11:36:25	2025-07-11 11:36:25	0
112	216	254	2025-07-11 11:36:25	2025-07-11 11:36:25	0
117	224	255	2025-07-11 14:11:13	2025-07-11 14:11:13	0
118	255	224	2025-07-11 14:11:13	2025-07-11 14:11:13	0
123	193	255	2025-07-11 14:35:40	2025-07-11 14:35:40	0
124	255	193	2025-07-11 14:35:40	2025-07-11 14:35:40	0
\.


--
-- Data for Name: user_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_details (id, user_id, sect_id, education_id, profession_id, height_cm, height_ft, weight_kg, weight_lbs, marital_status_id, wives, children, religious_practice, dress_code_id, smoking, genetic_disease, genetic_disease_id, about, created_at, updated_at) FROM stdin;
1	35	1	1	1	179	5.6	80	140	1	1	1	50	1	1	1	1	This is my about section	2025-03-19 17:18:40	2025-03-19 17:18:40
2	48	1	1	1	170	5.4	70	120	1	\N	\N	40	1	0	\N	\N	This about	2025-03-19 17:18:40	2025-03-19 17:18:40
3	36	1	1	1	170	5.6	70	120	1	0	0	40	1	1	1	1	This is about me\n	2025-03-19 17:18:40	2025-03-19 17:18:40
4	49	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-19 13:08:48	2025-05-19 13:08:48
7	52	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-22 05:30:36	2025-05-22 05:30:36
8	53	3	1	1	175	5.7	70	154	1	1	3	50	2	0	1	\N	I love hiking and reading books.	2025-05-22 06:30:08	2025-06-03 09:27:34
5	50	1	1	1	185.93	6.10	168	370.38	1	\N	0	50	3	1	1	1	hel	2025-05-20 07:06:44	2025-05-28 15:00:40
6	51	1	1	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-20 07:08:20	2025-05-31 06:25:00
9	54	6	5	1	183	6.37	61	114	1	2	10	7	2	1	0	6	Itaque ut rerum eaque cupiditate voluptatibus dolores sint. Et saepe sapiente deserunt unde necessitatibus recusandae. Ad eum qui nemo.	2025-05-23 10:22:02	2025-05-23 10:22:02
10	55	4	5	1	163	6.4	90	127	6	1	0	22	1	1	1	3	Nostrum quos possimus aliquid. Omnis veritatis dolores perferendis eum quo. Nihil sint repudiandae qui incidunt est debitis.	2025-05-23 10:22:03	2025-05-23 10:22:03
11	56	5	5	3	199	6.36	94	216	4	2	5	18	2	1	1	4	Assumenda ducimus exercitationem molestias fuga itaque sapiente sed. Amet et dolorem et asperiores. Architecto harum pariatur commodi voluptas. Mollitia modi ipsa impedit at quia animi.	2025-05-23 10:22:03	2025-05-23 10:22:03
12	57	1	4	1	154	6.24	80	211	3	3	2	75	3	1	1	2	Nam omnis sed voluptatem aut sequi est eum perspiciatis. Asperiores qui neque beatae assumenda harum ea harum. Cumque saepe ut temporibus corporis. Repellendus quia totam rerum tempore.	2025-05-23 10:22:03	2025-05-23 10:22:03
13	58	3	6	4	167	5.66	77	160	2	0	10	94	2	1	0	2	Facilis quia et veniam culpa quo eum quidem. Consequatur est quo ut.	2025-05-23 10:22:04	2025-05-23 10:22:04
14	59	5	5	4	176	6.26	65	186	4	1	10	47	3	0	1	3	Adipisci ut aut quis voluptatum ipsam ducimus. Facilis aliquam mollitia quis itaque repudiandae dolor voluptatem. Culpa doloribus nesciunt non dolores unde ipsa. Molestiae et repellendus nesciunt amet cupiditate. Dignissimos sunt consequatur quae nisi eius vel ratione.	2025-05-23 10:22:04	2025-05-23 10:22:04
15	60	6	4	5	157	5.38	51	208	7	3	6	40	4	1	1	10	Eligendi qui eaque veniam dolor culpa sit. Nam et fugiat omnis consectetur magni. Voluptatibus explicabo quam eligendi rem mollitia dolorem quidem amet.	2025-05-23 10:22:04	2025-05-23 10:22:04
16	61	6	7	5	153	5.17	73	194	2	2	0	74	5	1	0	1	Excepturi nisi odio sunt unde et distinctio. Dicta quae voluptate recusandae qui qui perferendis nihil. Sequi vel cupiditate rerum. Consequuntur eos et et sed error.	2025-05-23 10:22:05	2025-05-23 10:22:05
17	62	4	7	5	169	5.58	54	176	1	3	8	29	5	1	1	5	Et eos vitae iusto et. Consequatur et qui placeat et. Cumque dicta quisquam impedit perspiciatis et quia.	2025-05-23 10:22:05	2025-05-23 10:22:05
18	63	4	5	3	183	5.69	54	146	5	3	3	74	2	1	1	8	Ab libero sit ipsam ea et. Eos dolor placeat odio atque earum ex. Hic velit dolores eius dolorem asperiores sit quis et. Hic assumenda quis consequatur voluptatibus est laboriosam eos aliquid.	2025-05-23 10:22:05	2025-05-23 10:22:05
19	64	9	4	2	178	6.36	93	193	3	3	2	43	2	0	1	9	Occaecati magni exercitationem recusandae autem non dolores. Dolorem alias quaerat laboriosam non similique. Sint atque fugit doloribus aut iste qui itaque. Nihil placeat aut aut eos est. Vel ex quo consectetur.	2025-05-23 10:22:06	2025-05-23 10:22:06
20	65	4	4	2	162	5.77	100	170	7	2	10	96	2	0	0	6	Et iste ex iusto ut sint necessitatibus nisi autem. Iste accusantium voluptatibus autem inventore eaque. Officia illum non aspernatur praesentium nisi. Modi et quia magni ullam aperiam aut eaque.	2025-05-23 10:22:06	2025-05-23 10:22:06
21	66	7	3	5	156	5.12	77	155	5	3	6	36	1	1	1	4	Veniam fugiat dolor vel et molestias est labore autem. Neque eos sunt recusandae sit recusandae. Et minus rem molestiae et. Necessitatibus dolorem et optio ut et ullam.	2025-05-23 10:22:06	2025-05-23 10:22:06
22	67	9	5	5	173	5.64	76	204	1	0	0	26	2	1	0	5	Nisi nesciunt sunt sit quasi voluptatem quia. Ut nostrum velit fugit voluptas nobis nisi. Nemo ex doloremque molestias ad. Laborum ad minus reiciendis tempora et voluptatem voluptatem.	2025-05-23 10:22:07	2025-05-23 10:22:07
23	68	9	5	5	183	6.15	76	136	7	3	6	57	1	0	1	2	Delectus reprehenderit sequi dolores eligendi nihil. Animi autem esse sed. Nulla ratione neque blanditiis aliquam. Maiores doloremque voluptatem ut voluptatem corporis animi.	2025-05-23 10:22:07	2025-05-23 10:22:07
24	69	9	7	1	172	6.22	77	220	6	2	3	3	2	0	1	3	Quibusdam occaecati ducimus voluptatem doloribus fugiat. Ut consequatur vitae dolor nam quidem et ratione necessitatibus. Ut aut et recusandae quo. Harum accusamus ut voluptatem amet sed quisquam.	2025-05-23 10:22:07	2025-05-23 10:22:07
25	70	8	1	4	160	5.1	54	142	3	3	6	78	1	0	0	7	Qui asperiores deleniti et distinctio quidem. Doloribus ut vero cumque voluptatem molestias nemo assumenda. Repellendus quidem ut animi itaque commodi. Eos vitae praesentium earum possimus placeat excepturi totam.	2025-05-23 10:22:07	2025-05-23 10:22:07
79	124	8	5	4	197	5.94	93	215	3	1	0	1	5	0	0	9	Facere dolorem nesciunt expedita modi debitis. Eos aut maxime omnis vel tempora quas. Et hic qui quibusdam.	2025-05-23 10:22:23	2025-05-23 10:22:23
26	71	6	5	1	173	6.44	65	199	7	3	0	62	5	0	0	10	Iusto sed tempore ea repellat aut accusantium dolore. In id ratione assumenda quia reprehenderit velit quod. Quo aut et voluptatibus fuga voluptas similique. Et totam nulla dicta est deleniti ut amet maiores.	2025-05-23 10:22:08	2025-05-23 10:22:08
27	72	1	6	1	158	6.35	89	156	3	3	10	56	1	0	0	8	Ut repellendus atque voluptatum quis. Eos maxime cum maxime minima pariatur molestias.	2025-05-23 10:22:08	2025-05-23 10:22:08
28	73	3	5	3	182	5.81	53	169	3	2	10	65	3	1	0	7	Provident numquam sit aut qui nihil. Placeat sequi hic ullam impedit velit voluptate. Dolorem repellat consequatur natus molestiae enim magni. Suscipit dolorem enim eveniet doloremque.	2025-05-23 10:22:08	2025-05-23 10:22:08
29	74	3	1	4	195	5.34	89	169	3	0	0	93	1	1	1	5	Voluptatem sed aut esse est in est. Explicabo omnis nulla praesentium et iure debitis adipisci. Voluptates quidem neque explicabo quia. Sit blanditiis nam error esse tenetur eaque voluptatibus.	2025-05-23 10:22:09	2025-05-23 10:22:09
30	75	2	6	2	159	5.87	74	111	2	1	6	36	3	0	0	5	Saepe dolor quis sit tempore at. Nam dicta dolorum exercitationem.	2025-05-23 10:22:09	2025-05-23 10:22:09
31	76	5	1	4	169	5.28	50	204	2	2	9	86	5	0	1	1	Repellat dolorem eligendi ratione est. Repudiandae molestias praesentium hic ratione. Expedita et unde mollitia veritatis at occaecati eos.	2025-05-23 10:22:09	2025-05-23 10:22:09
32	77	2	7	4	181	5.28	76	202	4	0	0	74	3	0	1	5	Architecto accusamus non soluta est. Deleniti deserunt vero laudantium qui iure. Molestiae autem temporibus aut vero et sequi incidunt molestiae. Soluta asperiores ut quia aut voluptatem.	2025-05-23 10:22:09	2025-05-23 10:22:09
33	78	8	5	4	192	5.81	74	123	4	0	10	48	4	1	1	9	Officia illo ut porro rerum et numquam laudantium. Eos assumenda architecto eveniet eos aut aliquam. Earum sed ipsa iusto dolor consectetur impedit quisquam.	2025-05-23 10:22:10	2025-05-23 10:22:10
34	79	8	4	1	157	5.83	80	139	3	2	6	56	5	1	1	8	Dolor numquam non dolor nihil accusantium neque. Quisquam aut molestiae tenetur amet sed repudiandae placeat. Qui suscipit exercitationem veniam architecto aliquid. Quod ut sunt magni. Aliquid est fugiat quod voluptas maxime rerum ut.	2025-05-23 10:22:10	2025-05-23 10:22:10
35	80	2	5	1	179	5.54	86	126	5	1	9	66	5	0	0	8	Sapiente eum qui aliquam iste. Nam tempore inventore eius necessitatibus voluptatibus. Fuga voluptatem impedit voluptas beatae quasi quis odio. Commodi perferendis est cumque.	2025-05-23 10:22:10	2025-05-23 10:22:10
36	81	10	1	4	185	5.38	83	187	4	3	8	77	5	0	1	3	Rerum aut eligendi rerum quidem eum eaque. Distinctio aut aut at necessitatibus. Alias id tempore reprehenderit debitis consequuntur sunt eos. Debitis omnis modi qui rerum quibusdam modi et.	2025-05-23 10:22:11	2025-05-23 10:22:11
37	82	2	2	2	193	5.65	73	204	5	2	5	80	3	0	1	4	Voluptatibus enim dolorem natus officiis. Beatae suscipit praesentium ratione id. Aut eum nisi ex quod odit. Tempore porro earum sit possimus debitis maiores debitis.	2025-05-23 10:22:11	2025-05-23 10:22:11
38	83	10	1	2	159	5.32	81	169	2	3	3	47	5	0	0	7	Eveniet blanditiis et numquam rerum eum quia. Inventore qui corrupti corrupti. Dolor ducimus unde non nihil sunt laudantium.	2025-05-23 10:22:11	2025-05-23 10:22:11
39	84	5	4	1	174	5.46	95	181	4	2	5	25	4	0	1	7	Rerum enim et soluta. Recusandae ut magni ut.	2025-05-23 10:22:11	2025-05-23 10:22:11
40	85	1	2	5	157	5.74	99	114	7	1	10	78	5	0	0	7	Corporis rerum excepturi vero aperiam id asperiores. Alias eligendi eum dolor. Et earum et nostrum nobis molestiae.	2025-05-23 10:22:12	2025-05-23 10:22:12
41	86	8	3	4	174	5.69	52	217	2	1	9	32	3	1	1	10	Magni nihil dignissimos quasi saepe eius qui amet. Labore necessitatibus optio suscipit earum et. Repellat autem dolor ipsum enim perferendis suscipit.	2025-05-23 10:22:12	2025-05-23 10:22:12
42	87	1	4	5	156	5.59	80	146	5	1	6	23	3	0	0	8	Explicabo molestiae modi amet at aut. Similique dignissimos minus temporibus fuga nihil ducimus. Dicta soluta velit velit dolor dolorem eos.	2025-05-23 10:22:12	2025-05-23 10:22:12
43	88	9	5	5	168	5.72	86	204	1	0	3	18	2	0	0	4	Nulla assumenda voluptatem repudiandae animi sunt earum. Dicta est qui suscipit consequatur.	2025-05-23 10:22:13	2025-05-23 10:22:13
44	89	10	6	1	178	5.27	99	204	2	2	7	73	2	1	1	6	Laboriosam enim excepturi quibusdam architecto aliquid. Rerum quia iusto harum velit voluptate in aperiam. Quasi est est minus.	2025-05-23 10:22:13	2025-05-23 10:22:13
45	90	3	4	3	152	5.09	90	220	2	0	5	62	1	0	1	4	Repellendus voluptas vitae ut omnis deleniti voluptatibus. Eligendi et ipsum occaecati quam. Aperiam maxime rerum unde vero officiis eveniet. Non est et mollitia repellat. Doloremque doloremque hic sunt distinctio aut optio.	2025-05-23 10:22:13	2025-05-23 10:22:13
46	91	7	3	2	171	5.33	81	204	7	1	6	88	1	1	1	2	Soluta voluptatem sit sed ullam impedit ut. Sed fugiat facilis dignissimos porro dignissimos. Cupiditate voluptatem numquam voluptatem ea modi fugiat.	2025-05-23 10:22:14	2025-05-23 10:22:14
47	92	3	2	4	194	6.41	52	162	4	2	0	42	1	1	0	4	Laudantium saepe laboriosam ut ipsam sint. Quasi quo et aut laboriosam. Aperiam ex quia saepe atque similique. Dolor totam atque eum recusandae.	2025-05-23 10:22:14	2025-05-23 10:22:14
48	93	7	4	4	194	5.04	65	136	1	2	6	8	3	1	1	7	Qui in sit aut rerum. Blanditiis autem tempora numquam odit ipsa eos vel. Dolorem aut quibusdam non nihil harum architecto.	2025-05-23 10:22:14	2025-05-23 10:22:14
49	94	3	6	3	162	5.46	81	142	6	1	7	66	2	0	1	2	Sunt voluptas velit vero ut consequatur. Quis quia quo pariatur rerum commodi sunt.	2025-05-23 10:22:14	2025-05-23 10:22:14
50	95	3	6	1	200	6.17	80	150	6	1	1	92	3	0	1	9	Assumenda cumque dignissimos voluptatibus laudantium aspernatur earum omnis. Amet repudiandae voluptates est nihil voluptatem sed et. Quam molestiae facilis soluta commodi impedit.	2025-05-23 10:22:15	2025-05-23 10:22:15
51	96	6	7	3	170	5.47	86	191	3	1	4	78	1	1	0	6	Vero soluta quia itaque soluta aut molestiae veritatis voluptates. Odio ut facere ipsam et. Necessitatibus autem nobis dolorum ad.	2025-05-23 10:22:15	2025-05-23 10:22:15
52	97	9	7	3	179	5.76	85	144	3	1	7	58	1	1	0	1	Fuga et saepe quo eius. Voluptas architecto id non minus. Iste ad sed officia et debitis commodi. Error impedit voluptatem non illum quo ut voluptatibus.	2025-05-23 10:22:15	2025-05-23 10:22:15
53	98	6	4	3	170	5.43	85	173	6	2	3	50	3	0	0	7	Reiciendis ea delectus dolorem. Ipsum consequatur labore aperiam aut vel magnam. Eum assumenda nostrum dolor omnis. Nulla id ut est dicta ipsam minus possimus quidem.	2025-05-23 10:22:16	2025-05-23 10:22:16
54	99	10	3	4	158	4.94	93	112	5	2	1	52	3	1	1	9	Corporis possimus at aperiam rem. Vel autem incidunt facere rerum velit itaque dolorem. Est quod labore consequatur quia inventore eveniet esse. Velit enim et est est quibusdam nesciunt voluptas. Blanditiis deserunt voluptas voluptas.	2025-05-23 10:22:16	2025-05-23 10:22:16
55	100	7	4	5	170	6.12	77	132	1	3	3	76	4	0	1	9	Quo distinctio et autem quo. Dignissimos omnis incidunt odio corporis. Voluptatibus dolorem itaque quaerat a in similique. Autem omnis autem accusantium eaque. Eos harum hic molestias mollitia reprehenderit commodi qui.	2025-05-23 10:22:16	2025-05-23 10:22:16
56	101	8	1	4	177	5.53	84	193	2	3	10	69	5	1	1	9	Id earum incidunt quis. Inventore qui hic omnis sit sapiente maxime quis. Ut tenetur iste et sit. Animi quam doloribus magni asperiores excepturi recusandae.	2025-05-23 10:22:16	2025-05-23 10:22:16
57	102	3	3	3	194	6.3	63	162	2	1	2	59	3	1	0	3	Dolorum rem quia sit vero ut pariatur consequuntur. Aut corporis sed et cumque eos et et. Inventore quia velit sit omnis debitis pariatur illo autem.	2025-05-23 10:22:17	2025-05-23 10:22:17
58	103	9	1	2	153	5.59	98	184	2	0	10	51	1	1	1	4	Voluptatem pariatur voluptate qui soluta sunt. Labore officiis velit et ipsam et velit qui explicabo. Earum qui et et sit maxime iste.	2025-05-23 10:22:17	2025-05-23 10:22:17
59	104	1	5	5	183	5.69	98	110	7	2	0	21	5	0	1	5	Veniam quasi libero est iusto dolorem. Accusantium officiis non corporis omnis et nam dolorum. Tempora laborum consequuntur sint.	2025-05-23 10:22:17	2025-05-23 10:22:17
60	105	8	4	3	200	6.12	52	171	4	3	10	43	5	1	0	3	Velit blanditiis porro doloremque vitae exercitationem laboriosam. Sed asperiores minus sit culpa.	2025-05-23 10:22:18	2025-05-23 10:22:18
61	106	1	2	1	153	6.08	73	202	6	2	9	43	2	0	1	6	Aut fuga minima sapiente eveniet. Fugiat nostrum in fugit earum. Quibusdam dicta voluptas provident dolorum repellat. Qui omnis soluta et dolorem ipsam quis.	2025-05-23 10:22:18	2025-05-23 10:22:18
62	107	5	2	2	168	5.72	68	190	6	1	7	70	1	0	0	1	Repellendus natus vitae ipsum totam. Neque temporibus possimus aut ullam commodi necessitatibus. Aliquam quae voluptas est quo. Suscipit laboriosam quod fuga quis in totam.	2025-05-23 10:22:18	2025-05-23 10:22:18
63	108	7	3	2	192	5.06	98	161	4	0	8	78	1	1	1	3	Dolores qui deleniti aut quia excepturi officiis. Libero voluptas adipisci suscipit nihil ea necessitatibus. Soluta et similique aspernatur eligendi nihil. Ut molestiae illo et quo velit maxime.	2025-05-23 10:22:19	2025-05-23 10:22:19
64	109	8	4	3	176	5.87	66	115	3	0	1	51	2	1	0	6	Consequatur id quia omnis molestias voluptatem excepturi id. Et perspiciatis numquam repellendus perspiciatis. Voluptate reprehenderit porro labore repellendus.	2025-05-23 10:22:19	2025-05-23 10:22:19
65	110	7	2	3	180	6.15	78	129	6	2	8	70	5	1	0	7	Quia facilis aut inventore ex et voluptas sint dolor. Et vero est omnis quas. Cum earum est veniam sunt cum.	2025-05-23 10:22:19	2025-05-23 10:22:19
66	111	2	3	5	191	6.41	77	158	7	1	1	53	1	1	0	8	Repellendus cumque rerum esse molestiae adipisci maiores. Deserunt est nobis veritatis libero earum reprehenderit quibusdam. Quo illum pariatur suscipit dolores tempore voluptatibus. Quod quos qui qui aut blanditiis deleniti.	2025-05-23 10:22:19	2025-05-23 10:22:19
67	112	7	7	3	176	6.39	60	219	5	0	7	89	1	0	1	9	Pariatur quis velit numquam suscipit qui soluta. Eos consequatur tempore consequuntur consequuntur reiciendis. Et rerum sed illum delectus magni sit blanditiis.	2025-05-23 10:22:20	2025-05-23 10:22:20
68	113	1	2	4	181	4.94	76	149	1	0	4	91	3	0	1	5	Ad excepturi et aspernatur rerum tempora. Nesciunt rerum numquam eum molestias.	2025-05-23 10:22:20	2025-05-23 10:22:20
69	114	1	5	4	160	5.45	95	128	3	2	3	33	4	1	0	2	Accusamus voluptatem minus aliquid facere voluptatibus. Et odio excepturi autem doloribus.	2025-05-23 10:22:20	2025-05-23 10:22:20
70	115	10	4	2	196	5.44	51	118	2	3	7	82	5	1	0	6	Ab eos qui eius repellat ad odio. Alias accusantium voluptatem quis velit omnis voluptatem dolor. Accusamus laboriosam commodi eos ut libero. Fugit sed vel ut vel quae.	2025-05-23 10:22:21	2025-05-23 10:22:21
71	116	9	3	4	168	5.13	81	110	7	3	10	47	5	1	0	8	Ea et distinctio eveniet officiis facilis. Nemo dolorem ea accusantium quis qui. Consequatur vitae voluptas tempore dolor nisi. Tempora earum iusto qui repellat recusandae consequatur.	2025-05-23 10:22:21	2025-05-23 10:22:21
72	117	9	7	2	171	6.48	88	111	2	2	0	32	3	1	1	3	Alias voluptatem est mollitia mollitia nemo. Ut culpa quaerat minima aut blanditiis aut voluptates est. Aperiam harum accusantium quidem perspiciatis. Blanditiis pariatur recusandae nobis tempore dolorem voluptates.	2025-05-23 10:22:21	2025-05-23 10:22:21
73	118	10	4	5	150	5.19	83	134	5	0	9	18	5	1	0	9	Nihil ullam qui eum omnis iste soluta. Sed repudiandae saepe veniam deleniti. Harum temporibus voluptates eveniet dolor voluptatibus provident. Provident dignissimos in ut voluptatem fugiat.	2025-05-23 10:22:21	2025-05-23 10:22:21
74	119	2	2	3	189	5.04	91	214	7	0	9	77	3	1	0	9	Modi deleniti iusto placeat natus. Non iusto animi deserunt aut asperiores voluptas. Sit amet a architecto sapiente qui est nostrum cum.	2025-05-23 10:22:22	2025-05-23 10:22:22
75	120	3	5	3	189	6.44	65	214	3	0	7	68	1	1	0	6	Nemo ab perspiciatis et unde similique et impedit. Provident laborum voluptatum ex et tenetur. Illo velit beatae sit fuga consectetur. Odit vel aut quis id beatae magni velit.	2025-05-23 10:22:22	2025-05-23 10:22:22
76	121	5	6	4	167	5.01	62	123	7	3	0	14	4	0	0	9	Illo fugiat sed cum atque et. Est sequi non rerum reiciendis dolores nobis.	2025-05-23 10:22:22	2025-05-23 10:22:22
77	122	3	2	2	165	6.03	94	205	1	0	3	81	4	1	0	7	Officiis dignissimos vel quam distinctio et. Blanditiis sequi dolor eum optio ut. Libero et eum consectetur.	2025-05-23 10:22:23	2025-05-23 10:22:23
78	123	5	5	2	198	5.21	84	132	3	2	10	53	3	1	0	7	Velit quia qui laboriosam consectetur recusandae est quis pariatur. Impedit labore ab omnis et saepe. Laborum laborum delectus et nobis.	2025-05-23 10:22:23	2025-05-23 10:22:23
80	125	3	4	3	170	6.43	71	138	2	0	6	28	5	1	1	4	Animi molestiae occaecati voluptate iusto eveniet. Laborum in aspernatur rem. Ut dicta voluptate beatae cupiditate quisquam. Itaque sint molestias recusandae reprehenderit magni itaque. Non officia veniam cupiditate rerum tenetur tenetur assumenda.	2025-05-23 10:22:24	2025-05-23 10:22:24
81	126	6	6	1	185	5.26	75	128	2	2	3	18	5	0	0	8	Quas dolorem in velit laborum dignissimos. Debitis repudiandae voluptas consequatur voluptates adipisci incidunt illum. Quos deserunt quo minus illum.	2025-05-23 10:22:24	2025-05-23 10:22:24
82	127	9	6	3	177	5.68	71	205	7	3	1	49	4	0	1	6	Odit quia eius deserunt harum et. Dolor autem esse sed atque facere. Quaerat mollitia harum aut ut. Est qui explicabo id nesciunt aut.	2025-05-23 10:22:24	2025-05-23 10:22:24
83	128	4	3	1	185	5.78	75	130	6	0	5	71	3	1	0	8	Optio et unde quibusdam voluptatum. Quia aliquam illo qui officiis quae. Vero aperiam corporis sapiente aut aut.	2025-05-23 10:22:24	2025-05-23 10:22:24
84	129	6	2	1	156	5.39	66	202	4	2	6	24	2	1	1	3	In cumque incidunt voluptatem. Dolorem similique illum tenetur fuga id rerum. Facere quia quibusdam excepturi id corrupti quia molestiae.	2025-05-23 10:22:25	2025-05-23 10:22:25
85	130	1	6	1	160	5.64	65	122	2	0	6	78	4	0	0	6	Similique consequuntur vel impedit omnis. Et soluta voluptatum et ea adipisci consequatur. Laborum sed odio omnis aut.	2025-05-23 10:22:25	2025-05-23 10:22:25
86	131	2	7	4	188	4.9	72	159	6	0	7	78	4	1	0	7	Quidem reiciendis quia commodi inventore accusamus voluptates ullam provident. Voluptas omnis architecto quo asperiores. Ratione aut explicabo est explicabo repudiandae libero sed. Aperiam vel nihil dolor praesentium laudantium.	2025-05-23 10:22:25	2025-05-23 10:22:25
87	132	9	7	1	170	6.06	91	217	2	3	10	31	3	1	1	2	Qui quod provident aperiam et illo nam delectus. Hic hic sit veritatis illo suscipit velit mollitia. Laudantium et non sequi nobis.	2025-05-23 10:22:26	2025-05-23 10:22:26
88	133	7	7	1	183	5.7	52	205	6	3	1	82	1	1	1	10	Nisi non veritatis optio soluta alias. Non numquam voluptas vero dolorum laudantium. Qui et esse commodi ut expedita laborum. Possimus voluptatum eveniet eos assumenda dignissimos et dolorum.	2025-05-23 10:22:26	2025-05-23 10:22:26
89	134	2	7	1	190	5.63	69	146	6	2	6	31	1	1	0	3	A quidem autem esse dolor sit quos. Esse porro asperiores qui et. Odit itaque maxime consequuntur veritatis omnis illo magni.	2025-05-23 10:22:26	2025-05-23 10:22:26
90	135	4	5	1	187	4.94	62	175	1	0	8	64	3	1	1	9	Quos autem dolores omnis corporis molestiae. Fugit et dolor natus ut corporis perferendis omnis dolorem. Asperiores vitae et repellat est voluptatem. Dicta consequatur dicta eos consequatur est voluptatibus. Minima est qui occaecati.	2025-05-23 10:22:26	2025-05-23 10:22:26
91	136	5	2	3	199	5.71	78	203	6	1	6	35	1	0	0	6	Harum explicabo et accusamus iste. Nostrum maxime est totam ullam. Et delectus corrupti ut aut libero ut inventore. Quaerat qui autem reprehenderit optio temporibus pariatur magni laudantium.	2025-05-23 10:22:27	2025-05-23 10:22:27
92	137	1	7	1	191	6.17	62	169	3	1	2	80	3	0	1	4	Aut molestiae consequuntur libero ea. Dolores voluptatem omnis occaecati aut nemo. Aut velit at quia nulla fugiat laudantium.	2025-05-23 10:22:27	2025-05-23 10:22:27
93	138	3	3	1	162	6.46	93	114	4	3	5	95	1	0	1	5	Sunt commodi sunt id magni repellat repellat a. Dolore atque ut voluptas iure. Numquam voluptatem commodi aut rerum et excepturi praesentium delectus.	2025-05-23 10:22:27	2025-05-23 10:22:27
94	139	7	3	4	187	5.28	59	183	6	0	0	52	1	0	1	3	Enim quas unde est nobis. Accusamus nemo sunt odio.	2025-05-23 10:22:28	2025-05-23 10:22:28
95	140	2	3	1	190	4.97	54	208	2	1	10	42	5	1	0	2	Velit unde tenetur et aspernatur id sit quia. Quia asperiores consequuntur aspernatur unde velit. Doloribus ullam aut provident eos accusantium dolorem omnis. Facere delectus aspernatur dignissimos tempore est unde.	2025-05-23 10:22:28	2025-05-23 10:22:28
96	141	5	2	2	170	6.11	78	169	7	3	0	28	2	0	1	2	Accusamus illo fuga quia ea ut et. Corrupti alias error voluptatem nihil autem deleniti. Quisquam asperiores sed harum numquam minima adipisci. Aut non facere distinctio aspernatur deserunt error. Est et illum blanditiis quaerat ab.	2025-05-23 10:22:28	2025-05-23 10:22:28
97	142	3	2	3	200	6.13	80	194	3	3	1	20	2	0	0	5	Voluptas occaecati voluptas suscipit. Tempora placeat doloremque aliquid distinctio qui. Amet magni dolorem explicabo voluptatem. Ipsa quam maiores officiis ullam ab labore rerum.	2025-05-23 10:22:29	2025-05-23 10:22:29
98	143	2	5	2	189	6.46	51	151	6	0	8	26	4	0	0	9	Odit excepturi illo qui sunt nesciunt at sint. Quia est velit ducimus magni porro expedita optio. Ut dolores deleniti aut culpa consequatur. Voluptate voluptatibus ut enim assumenda ad id.	2025-05-23 10:22:29	2025-05-23 10:22:29
99	144	1	3	4	160	5.72	61	209	3	3	2	56	1	1	1	1	Sint deleniti aut architecto libero. Velit sed fugiat voluptatibus provident. Harum ea est ut aut ut nam.	2025-05-23 10:22:29	2025-05-23 10:22:29
100	145	3	6	1	151	6	76	159	4	2	1	77	3	0	1	8	Sunt est placeat voluptatem ipsum eveniet nisi at. Qui delectus assumenda est expedita ex. Enim est eum reprehenderit accusantium reprehenderit.	2025-05-23 10:22:29	2025-05-23 10:22:29
101	146	3	7	5	184	5.34	71	212	7	2	4	86	3	0	0	1	Iste cumque quasi nemo quo quis. Voluptatem quasi nostrum dicta unde sit. Repellat laborum quam error. Et vel eum ut ut dolorum ea.	2025-05-23 10:22:30	2025-05-23 10:22:30
102	147	7	5	2	176	5.92	62	114	6	0	5	27	4	1	1	6	Quos consectetur nihil id blanditiis et. Enim sit dignissimos tenetur nihil ut. Iste aperiam at est ullam voluptatibus nulla natus. Consequuntur sit mollitia consequuntur numquam veritatis rerum.	2025-05-23 10:22:30	2025-05-23 10:22:30
103	148	1	4	1	191	5.05	63	155	7	1	2	93	5	1	0	3	Minima et nostrum explicabo explicabo. Illum sed ut totam molestiae. Nobis et repellat dolor dolorem.	2025-05-23 10:22:30	2025-05-23 10:22:30
104	149	3	7	3	168	6.01	82	218	1	3	3	98	1	1	0	9	Et id iste quo ab delectus. Accusantium illum qui nihil voluptate corrupti facere.	2025-05-23 10:22:31	2025-05-23 10:22:31
105	150	8	2	5	151	6.05	97	113	3	1	3	60	2	1	0	10	Rem ullam nam et itaque fugit odio velit. Velit sit saepe at voluptates. Rerum quia odio molestiae dicta ut vero distinctio architecto.	2025-05-23 10:22:31	2025-05-23 10:22:31
106	151	4	7	3	195	5.46	96	152	3	2	9	39	1	1	1	7	Dolorum est exercitationem dolor dolor eveniet cupiditate consequatur. Accusantium veniam sit officiis libero. Sit sed exercitationem corrupti.	2025-05-23 10:22:31	2025-05-23 10:22:31
107	152	2	4	1	184	6.33	85	121	4	1	7	80	2	1	1	9	Corporis et eaque quia ipsa ut. Qui ea officia autem tempora quidem ipsum adipisci nostrum. Ad laborum inventore et natus perspiciatis. Distinctio laboriosam aliquam ut voluptatem nemo.	2025-05-23 10:22:32	2025-05-23 10:22:32
108	153	3	7	1	176	5.3	54	161	1	1	7	6	3	1	0	2	Eum ipsum asperiores ipsum quae voluptatem quia quia. Ut dolores magnam magnam. Eos at nam a blanditiis est repudiandae. Repudiandae omnis quia dolor et labore labore corrupti.	2025-05-23 10:22:32	2025-05-23 10:22:32
109	154	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-23 13:54:05	2025-05-23 13:54:05
110	155	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-23 18:20:44	2025-05-23 18:20:44
111	156	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-23 18:24:04	2025-05-23 18:24:04
113	158	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-24 07:45:47	2025-05-24 07:45:47
114	161	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 09:53:26	2025-05-26 09:53:26
126	172	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	50	\N	\N	\N	\N	\N	2025-05-27 06:46:12	2025-05-27 06:51:00
133	179	2	1	2	5120.64	168	70	154.32	2	\N	\N	45	2	0	0	\N	hello my name is mahi, I have bachelor in MT and serving as electrical engineer in PAK int	2025-05-27 13:24:56	2025-05-28 09:57:39
141	185	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 09:59:03	2025-05-28 09:59:03
142	186	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 10:03:47	2025-05-28 10:03:47
143	187	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 17:28:00	2025-05-28 17:28:00
144	188	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 17:36:48	2025-05-28 17:36:48
127	173	\N	\N	\N	\N	\N	\N	\N	1	\N	\N	50	2	-1	1	1	ty for the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same	2025-05-27 07:02:34	2025-05-27 07:43:33
154	198	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-29 17:28:49	2025-05-29 17:28:49
130	176	2	2	2	5242.56	172	80	176.37	3	\N	\N	100	3	1	0	6	about me	2025-05-27 08:44:19	2025-05-27 17:11:07
134	180	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 17:39:44	2025-05-27 17:39:44
128	174	\N	\N	\N	\N	\N	\N	\N	2	\N	\N	50	2	1	1	3	hello	2025-05-27 08:15:06	2025-05-27 08:26:56
150	194	8	2	1	185.93	6.1	80	176.37	1	\N	\N	50	5	0	1	\N	Hi, my name is James and I am searching for a partner either married or single but without child.	2025-05-29 08:07:31	2025-05-29 08:25:10
129	175	2	2	2	172	5.64	65	143.3	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 08:31:31	2025-05-27 08:34:18
155	199	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 10:52:09	2025-05-30 10:52:09
112	157	2	2	2	762	25	25	55.12	2	\N	\N	50	2	0	0	2	hello	2025-05-23 21:35:48	2025-05-26 18:18:50
115	162	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 20:26:37	2025-05-26 20:26:37
116	163	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 22:28:07	2025-05-26 22:28:07
117	163	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 22:28:17	2025-05-26 22:28:17
118	164	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 04:42:09	2025-05-27 04:42:09
119	165	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 04:52:40	2025-05-27 04:52:40
120	165	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 04:54:25	2025-05-27 04:54:25
121	166	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:03:03	2025-05-27 05:03:03
122	168	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:09:50	2025-05-27 05:09:50
123	169	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:15:33	2025-05-27 05:15:33
124	170	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:42:18	2025-05-27 05:42:18
145	189	1	1	1	5242.56	172	80	176.37	2	\N	\N	50	3	0	1	\N	\N	2025-05-28 17:39:51	2025-05-28 17:42:37
146	190	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 17:43:31	2025-05-28 17:43:31
135	181	2	2	2	172	5.64	80	176.37	3	\N	\N	50	3	0	1	\N	hello	2025-05-27 18:16:10	2025-05-27 18:19:46
136	182	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 05:04:49	2025-05-28 05:04:49
137	183	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:09:29	2025-05-28 06:09:29
138	184	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:47:16	2025-05-28 06:47:16
139	184	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:47:42	2025-05-28 06:47:42
140	184	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:48:05	2025-05-28 06:48:05
132	178	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 12:45:50	2025-05-27 12:45:50
131	177	2	2	5	179.83	5.9	54.43	120	2	\N	\N	92	2	1	\N	\N	u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same to you and your family a very happy birthday 🎈	2025-05-27 12:23:10	2025-05-27 12:49:37
125	171	2	1	2	762	25	36	79.37	1	\N	\N	50	3	0	0	2	hello	2025-05-27 05:53:43	2025-05-27 06:42:44
157	201	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 11:34:19	2025-05-30 11:34:19
147	191	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	50	2	0	0	\N	\N	2025-05-28 17:51:05	2025-05-28 17:51:49
152	196	8	2	1	192.02	6.3	85	187.39	1	\N	\N	53	8	0	0	\N	Hi, my name is tuaib and I am married and now I want to marry 3rd time	2025-05-29 08:36:27	2025-05-29 08:40:27
151	195	2	2	2	179.83	5.9	80	176.37	2	\N	\N	50	5	1	1	\N	u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as well as well as a wonderful day to all the best of my life and the same to you a lot to me that I have	2025-05-29 08:17:16	2025-05-29 08:28:14
153	197	1	1	1	5242.56	172	80	176.37	2	\N	\N	50	5	0	1	\N	this is long description for male user only for testing. qrite about your zelf	2025-05-29 17:23:31	2025-06-04 14:59:19
149	193	2	1	3	161.54	5.3	62	136.69	2	\N	\N	62	3	0	1	\N	I am marry and searching for my partner. I have bachelor's in IT Engg and working as IT officer.	2025-05-29 07:13:26	2025-05-29 07:33:43
156	200	2	3	3	188.98	6.2	72	158.73	2	\N	\N	56	5	0	0	\N	Hi, my name is Rohan and I am searching for a life partner having decent personality and should be well groomed. Female should not be greater then 25	2025-05-30 11:24:09	2025-05-30 11:27:39
159	203	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 12:31:18	2025-05-30 12:31:18
158	202	2	2	3	192.02	6.3	72	158.73	2	\N	\N	57	5	0	0	\N	Hi, my name is Rohan I am searching for my life partner having decent personality and should not be more than 25	2025-05-30 12:28:12	2025-05-30 12:31:49
162	205	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:00:15	2025-05-30 14:00:15
163	206	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:02:36	2025-05-30 14:02:36
164	207	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:05:10	2025-05-30 14:05:10
165	208	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:18:33	2025-05-30 14:18:33
174	217	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-03 13:20:23	2025-06-03 13:20:23
161	204	1	1	1	185.93	6.1	160	352.74	2	\N	\N	50	5	0	0	\N	\N	2025-05-30 13:42:22	2025-05-31 06:15:43
160	204	1	1	1	185.93	6.1	160	352.74	2	\N	\N	50	5	0	0	\N	\N	2025-05-30 13:37:10	2025-05-31 06:15:43
175	218	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-03 13:25:31	2025-06-03 13:25:31
166	209	1	1	1	\N	\N	\N	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-31 09:08:40	2025-05-31 09:09:22
167	210	\N	\N	\N	\N	\N	\N	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-31 15:02:31	2025-05-31 15:03:53
187	230	1	3	1	182.88	6	100	220.46	8	\N	\N	50	5	0	0	\N	I am good	2025-06-05 07:01:06	2025-06-05 07:03:39
181	224	3	2	2	185.93	6.1	60	132.28	3	\N	\N	50	2	0	0	\N	hello	2025-06-04 07:57:14	2025-06-04 08:11:32
173	216	2	1	1	176.78	5.8	65	143.3	2	\N	\N	78	1	0	1	\N	I am seeking proposal for my self with educated and well groomed personality	2025-06-03 08:33:39	2025-06-03 18:06:26
182	225	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-04 08:22:58	2025-06-04 08:22:58
171	214	2	2	2	173.74	5.7	70	154.32	2	\N	\N	47	\N	0	\N	\N	tu hi babakutty hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko	2025-06-03 03:21:26	2025-06-04 04:07:51
196	238	2	2	2	179.83	5.9	70	154.32	1	\N	\N	100	7	1	0	\N	try to get time to sleep now he is not well as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same	2025-06-05 12:56:26	2025-06-05 13:14:03
169	212	2	1	3	164.59	5.4	75	165.35	1	\N	\N	50	7	0	0	\N	It's me	2025-06-01 17:22:19	2025-06-01 17:26:25
170	213	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-03 03:03:02	2025-06-03 03:03:02
177	220	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-04 07:07:31	2025-06-04 07:07:31
148	192	3	1	1	175	5.7	70	154	1	1	3	50	2	0	1	\N	I love hiking and reading books.	2025-05-28 17:53:13	2025-06-06 11:11:07
176	219	2	1	1	179.83	5.9	70	154.32	2	\N	\N	98	1	1	\N	\N	tyryyy to be a very good friend and my life partner of the same to ee to be a wonderful Easter of the same to u dear Fr and your friends are very good morning she was cool to know the same as the same to u dear friend and my life is not well and your	2025-06-04 06:45:50	2025-06-04 07:09:47
178	221	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-04 07:21:52	2025-06-04 07:21:52
191	234	8	2	1	167.64	5.5	50	110.23	3	\N	\N	61	4	0	1	\N	hello my name is not coming to the US but here it is	2025-06-05 09:02:52	2025-06-05 09:09:37
179	222	1	1	1	164.59	5.4	75	165.35	2	\N	\N	50	2	1	0	\N	this bio	2025-06-04 07:39:03	2025-06-04 10:17:18
188	231	2	1	1	152.4	5	60	132.28	2	\N	\N	94	1	1	0	\N	the same as the same as the same as the same as the same as the same as the same as the same as the same as I can u 😄😄😄😄😄😄 j the same as the same as the same as the same as the same as the same as	2025-06-05 07:45:09	2025-06-05 07:55:37
172	215	8	3	1	6.5	0.21	75	165.35	6	\N	\N	97	7	1	0	\N	I am married and searching for girl for 2nd marriage	2025-06-03 05:21:54	2025-06-04 11:52:22
193	236	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-05 10:21:01	2025-06-05 10:21:01
180	223	2	1	4	167.64	5.5	58	127.87	2	\N	\N	55	2	0	0	\N	hi my name is zainab and I am searching for profile	2025-06-04 07:39:50	2025-06-04 07:43:33
183	226	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	50	\N	0	0	\N	\N	2025-06-04 12:13:01	2025-06-04 12:16:58
184	227	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-06-04 16:55:03	2025-06-04 17:27:56
185	228	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-05 06:21:47	2025-06-05 06:21:47
192	235	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-06-05 10:16:36	2025-06-05 10:30:51
194	235	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-06-05 10:30:24	2025-06-05 10:30:51
189	232	1	1	1	198.12	6.5	80	176.37	3	\N	\N	50	2	0	0	\N	\N	2025-06-05 08:06:47	2025-06-05 08:10:26
199	241	2	1	2	182.88	6	90	198.42	8	\N	\N	2	5	1	0	\N	t u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same to	2025-06-06 13:57:11	2025-06-06 14:17:35
197	239	2	1	1	164.59	5.4	70	154.32	8	\N	\N	100	5	1	0	\N	RT ka u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same as the same as the	2025-06-06 03:32:30	2025-06-06 03:40:54
201	243	2	1	4	170.69	5.6	59	130.07	3	0	1	19	4	0	1	\N	hi my name is Mahi and I am divorce and searching for proposal who will take care of me and my child in good way...	2025-06-09 09:13:24	2025-06-09 09:46:46
186	229	1	1	2	167.64	5.5	65	143.3	2	\N	\N	50	2	0	1	\N	hi I am here to search for proposal	2025-06-05 06:25:14	2025-06-05 06:31:46
190	233	2	1	1	152.4	5	70	154.32	2	\N	\N	100	1	1	1	\N	df in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same as I can u pls also add my life and the same as the same as the same as the same as the same time as I have been doing a very long time in the morning and I am not sure about the same as the same as the same as	2025-06-05 08:52:49	2025-06-05 08:59:31
195	237	2	1	3	170.69	5.6	65	143.3	8	\N	\N	62	5	\N	0	\N	This is me Ali	2025-06-05 12:01:21	2025-06-05 12:04:08
200	242	2	1	1	182.88	6	90	198.42	6	\N	\N	\N	\N	\N	0	\N	ty for the same as the same as the same as the same as the same as the same as	2025-06-07 12:04:36	2025-06-07 12:10:11
202	244	2	2	4	164.59	5.4	58	127.87	4	0	2	65	4	1	1	\N	hi my name is Sana and I'm interested to see updated status of the application for my new home in.	2025-06-10 09:19:28	2025-06-10 09:25:07
198	240	1	1	1	152.4	5	80	176.37	1	2	3	4	\N	1	0	\N	ty for the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same.	2025-06-06 11:35:23	2025-06-06 11:39:48
203	245	1	1	\N	176.78	5.8	68	149.91	8	\N	\N	64	7	0	1	\N	kdjfhhfh	2025-06-11 09:55:14	2025-06-11 10:12:04
204	246	1	1	1	4419.6	145	60	132.28	3	0	1	89	3	\N	1	\N	I love traveling	2025-06-11 09:55:34	2025-06-11 10:14:31
205	247	2	1	3	5090.16	167	70	154.32	8	\N	\N	50	6	0	0	\N	no	2025-06-23 21:05:53	2025-06-23 21:07:59
168	211	7	7	3	0	7.5	80	176.37	3	0	5	11	1	1	0	\N	hrllo hamid	2025-05-31 16:42:24	2025-07-13 14:22:41
230	271	1	1	2	365.76	12	120	264.55	1	2	1	28	\N	0	1	\N	The only way I could do that was if you wanted me too I could come and pick it out and then tyyyy	2025-07-13 20:16:01	2025-07-13 20:29:47
212	254	2	1	1	\N	\N	\N	0	1	2	2	50	6	1	1	\N	The only way I could do that was if you uiuuuyy want me too I don’t know how you do	2025-07-11 11:23:07	2025-07-11 11:34:32
206	248	8	1	3	155.45	5.10	84	185.19	8	\N	\N	68	7	0	0	\N	I am a mobile app developer	2025-06-27 14:51:05	2025-06-27 19:33:16
214	256	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-11 12:03:07	2025-07-11 12:03:07
213	255	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 11:44:15	2025-07-11 12:55:39
215	257	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-11 13:37:02	2025-07-11 13:37:02
226	267	8	2	4	150	4.92	110	242.51	4	0	2	13	2	0	0	\N	hello hello hello	2025-07-13 07:55:42	2025-07-13 08:18:01
217	259	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-11 15:06:09	2025-07-11 15:06:09
207	249	2	1	2	152.4	5	80	176.37	1	2	2	50	7	1	1	\N	I’m going back in a little while I got a couple of errands done I got a little something for	2025-06-28 13:01:59	2025-06-29 07:58:03
224	265	2	1	2	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-12 08:55:36	2025-07-12 08:56:12
208	250	2	1	2	182.88	6	98	216.05	6	\N	\N	50	6	0	0	\N	\N	2025-07-09 07:16:57	2025-07-09 07:18:37
209	251	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-09 10:44:36	2025-07-09 10:45:01
220	261	1	1	1	182.88	6	50	110.23	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 15:11:30	2025-07-11 15:13:03
218	260	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 15:09:28	2025-07-12 05:20:39
219	260	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 15:09:28	2025-07-12 05:20:39
211	253	2	1	1	9	0.3	54.43	120	1	2	2	47	5	1	1	\N	The only way I could do that was if you wanted me too I could come and pick it out and then I can go pick up it from your place or you could just pick me out of there or you could pick me out from the store or you can just come pick me out or you could go to my house or you can pick me out if that’s easier and I could just come pick you out from the house or you can go pick me out from there or you could come pick it out from there if that is OK but I’m still in a hurry I don’t want you if it’s too far out from my home so you know I’m here if you’re busy or if I don’t have a problem just call and let us have an extra time and if	2025-07-10 14:34:32	2025-07-12 05:27:16
223	264	2	1	3	4572	150	150	330.69	1	2	2	50	\N	0	1	\N	Searching for partner	2025-07-12 08:54:57	2025-07-12 09:04:15
210	252	1	1	1	182.88	6	160	352.74	1	1	2	\N	\N	\N	0	\N	\N	2025-07-10 06:19:03	2025-07-10 06:32:52
222	263	2	1	1	365.76	12	350	771.62	3	0	2	60	3	0	0	\N	Hi, My name is Parveen and searching for match. To find a matrimonial match, you can utilize online matrimonial websites and apps. These platforms allow you to create a profile, specify your preferences, and connect with potential partners based on your criteria. To find a matrimonial match, you can utilize online matrimonial websites and apps. These platforms allow you to create a profile, specify your preferences, and connect with potential partners based on your criteria.	2025-07-12 08:26:56	2025-07-12 10:31:55
216	258	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	0	\N	znnznznznznzmzmmz	2025-07-11 14:43:04	2025-07-12 10:59:41
225	266	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-13 07:26:29	2025-07-13 07:27:35
221	262	1	1	1	274.32	9	70	154.32	6	\N	\N	50	\N	0	1	\N	The only way I could do that was if you wanted me	2025-07-12 05:30:57	2025-07-12 05:36:45
231	272	8	1	5	4572	150	150	330.69	6	\N	\N	50	\N	0	0	\N	\N	2025-07-13 21:01:37	2025-07-13 21:05:15
227	268	8	1	3	4572	150	150	330.69	3	0	1	50	\N	\N	0	\N	\N	2025-07-13 11:10:11	2025-07-13 11:11:28
228	269	1	1	2	\N	\N	\N	0	\N	\N	\N	50	\N	0	0	\N	\N	2025-07-13 13:59:36	2025-07-13 14:00:49
229	270	2	1	2	\N	\N	\N	0	6	\N	\N	50	\N	0	0	\N	اتنمتاا	2025-07-13 15:22:32	2025-07-13 17:04:44
\.


--
-- Data for Name: user_disease_variants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_disease_variants (id, user_id, genetic_disease_id, genetic_disease_variant_id, created_at, updated_at) FROM stdin;
2	215	54	1	2025-06-04 11:57:22	2025-06-04 11:57:22
8	197	61	1	2025-06-04 14:59:19	2025-06-04 14:59:19
9	197	62	4	2025-06-04 14:59:19	2025-06-04 14:59:19
10	229	64	1	2025-06-05 06:31:12	2025-06-05 06:31:12
11	229	66	7	2025-06-05 06:31:12	2025-06-05 06:31:12
12	229	66	6	2025-06-05 06:31:12	2025-06-05 06:31:12
13	233	69	1	2025-06-05 08:58:57	2025-06-05 08:58:57
14	233	69	2	2025-06-05 08:58:57	2025-06-05 08:58:57
15	233	69	3	2025-06-05 08:58:57	2025-06-05 08:58:57
16	233	70	4	2025-06-05 08:58:57	2025-06-05 08:58:57
17	233	72	9	2025-06-05 08:58:57	2025-06-05 08:58:57
18	234	73	1	2025-06-05 09:08:58	2025-06-05 09:08:58
19	234	73	2	2025-06-05 09:08:58	2025-06-05 09:08:58
20	234	74	6	2025-06-05 09:08:58	2025-06-05 09:08:58
23	243	91	2	2025-06-09 09:46:46	2025-06-09 09:46:46
24	243	91	3	2025-06-09 09:46:46	2025-06-09 09:46:46
25	244	93	10	2025-06-10 09:24:33	2025-06-10 09:24:33
26	244	94	2	2025-06-10 09:24:33	2025-06-10 09:24:33
31	245	99	1	2025-06-11 10:12:01	2025-06-11 10:12:01
32	245	99	2	2025-06-11 10:12:01	2025-06-11 10:12:01
35	249	106	1	2025-06-29 07:58:03	2025-06-29 07:58:03
36	249	106	2	2025-06-29 07:58:03	2025-06-29 07:58:03
40	253	111	4	2025-07-11 08:46:13	2025-07-11 08:46:13
41	253	112	7	2025-07-11 08:46:13	2025-07-11 08:46:13
42	253	113	2	2025-07-11 08:46:13	2025-07-11 08:46:13
43	254	114	1	2025-07-11 11:29:34	2025-07-11 11:29:34
44	254	114	2	2025-07-11 11:29:34	2025-07-11 11:29:34
45	262	117	1	2025-07-12 05:36:38	2025-07-12 05:36:38
46	262	117	2	2025-07-12 05:36:38	2025-07-12 05:36:38
47	262	117	3	2025-07-12 05:36:38	2025-07-12 05:36:38
48	262	118	4	2025-07-12 05:36:38	2025-07-12 05:36:38
49	271	124	4	2025-07-13 20:29:37	2025-07-13 20:29:37
50	271	124	5	2025-07-13 20:29:37	2025-07-13 20:29:37
\.


--
-- Data for Name: user_diseases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_diseases (id, user_id, genetic_disease_id, created_at, updated_at, genetic_disease_variant_id) FROM stdin;
1	53	1	\N	\N	\N
2	176	1	\N	\N	\N
3	176	2	\N	\N	\N
4	176	3	\N	\N	\N
5	176	4	\N	\N	\N
6	181	1	\N	\N	\N
7	181	2	\N	\N	\N
8	181	3	\N	\N	\N
9	50	1	\N	\N	\N
10	50	2	\N	\N	\N
11	50	3	\N	\N	\N
12	50	4	\N	\N	\N
13	189	1	\N	\N	\N
14	189	2	\N	\N	\N
15	193	3	\N	\N	\N
16	193	4	\N	\N	\N
17	194	6	\N	\N	\N
18	194	5	\N	\N	\N
19	195	1	\N	\N	\N
20	195	2	\N	\N	\N
21	195	3	\N	\N	\N
24	216	1	\N	\N	\N
25	216	2	\N	\N	\N
26	216	3	\N	\N	\N
27	216	4	\N	\N	\N
28	216	5	\N	\N	\N
29	216	6	\N	\N	\N
46	223	1	\N	\N	\N
47	223	2	\N	\N	\N
54	215	1	2025-06-04 11:57:22	2025-06-04 11:57:22	\N
61	197	1	2025-06-04 14:59:19	2025-06-04 14:59:19	\N
62	197	2	2025-06-04 14:59:19	2025-06-04 14:59:19	\N
63	197	3	2025-06-04 14:59:19	2025-06-04 14:59:19	\N
64	229	1	2025-06-05 06:31:12	2025-06-05 06:31:12	\N
65	229	3	2025-06-05 06:31:12	2025-06-05 06:31:12	\N
66	229	4	2025-06-05 06:31:12	2025-06-05 06:31:12	\N
69	233	1	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
70	233	2	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
71	233	3	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
72	233	6	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
73	234	1	2025-06-05 09:08:58	2025-06-05 09:08:58	\N
74	234	4	2025-06-05 09:08:58	2025-06-05 09:08:58	\N
75	234	3	2025-06-05 09:08:58	2025-06-05 09:08:58	\N
84	192	1	2025-06-05 13:37:57	2025-06-05 13:37:57	\N
85	192	2	2025-06-05 13:37:57	2025-06-05 13:37:57	\N
86	192	4	2025-06-05 13:37:57	2025-06-05 13:37:57	\N
87	192	6	2025-06-05 13:37:57	2025-06-05 13:37:57	\N
90	243	3	2025-06-09 09:46:46	2025-06-09 09:46:46	\N
91	243	1	2025-06-09 09:46:46	2025-06-09 09:46:46	\N
92	244	5	2025-06-10 09:24:33	2025-06-10 09:24:33	\N
93	244	6	2025-06-10 09:24:33	2025-06-10 09:24:33	\N
94	244	1	2025-06-10 09:24:33	2025-06-10 09:24:33	\N
99	245	1	2025-06-11 10:12:01	2025-06-11 10:12:01	\N
100	245	3	2025-06-11 10:12:01	2025-06-11 10:12:01	\N
101	246	1	2025-06-11 10:14:31	2025-06-11 10:14:31	\N
102	246	4	2025-06-11 10:14:31	2025-06-11 10:14:31	\N
103	246	6	2025-06-11 10:14:31	2025-06-11 10:14:31	\N
106	249	1	2025-06-29 07:58:03	2025-06-29 07:58:03	\N
107	249	3	2025-06-29 07:58:03	2025-06-29 07:58:03	\N
111	253	2	2025-07-11 08:46:13	2025-07-11 08:46:13	\N
112	253	4	2025-07-11 08:46:13	2025-07-11 08:46:13	\N
113	253	1	2025-07-11 08:46:13	2025-07-11 08:46:13	\N
114	254	1	2025-07-11 11:29:34	2025-07-11 11:29:34	\N
115	254	3	2025-07-11 11:29:34	2025-07-11 11:29:34	\N
116	254	5	2025-07-11 11:29:34	2025-07-11 11:29:34	\N
117	262	1	2025-07-12 05:36:38	2025-07-12 05:36:38	\N
118	262	2	2025-07-12 05:36:38	2025-07-12 05:36:38	\N
122	264	3	2025-07-12 09:03:36	2025-07-12 09:03:36	\N
123	264	5	2025-07-12 09:03:36	2025-07-12 09:03:36	\N
124	271	2	2025-07-13 20:29:37	2025-07-13 20:29:37	\N
\.


--
-- Data for Name: user_dress_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_dress_codes (id, user_id, dress_code_id, created_at, updated_at) FROM stdin;
1	53	1	\N	\N
2	176	3	\N	\N
3	176	2	\N	\N
5	181	3	\N	\N
6	181	4	\N	\N
7	50	4	\N	\N
8	50	3	\N	\N
9	50	2	\N	\N
10	50	1	\N	\N
11	189	3	\N	\N
12	189	2	\N	\N
13	191	4	\N	\N
14	191	3	\N	\N
15	192	2	\N	\N
16	194	2	\N	\N
17	194	4	\N	\N
18	195	2	\N	\N
19	195	3	\N	\N
20	195	4	\N	\N
21	196	3	\N	\N
22	200	4	\N	\N
23	200	2	\N	\N
24	202	2	\N	\N
25	202	4	\N	\N
30	215	3	\N	\N
31	215	1	\N	\N
41	216	6	\N	\N
42	214	5	\N	\N
43	214	6	\N	\N
44	214	7	\N	\N
45	219	5	\N	\N
46	219	6	\N	\N
47	219	8	\N	\N
48	223	5	\N	\N
49	222	6	\N	\N
50	222	7	\N	\N
51	232	7	\N	\N
52	232	6	\N	\N
53	233	5	\N	\N
54	233	6	\N	\N
55	234	7	\N	\N
56	234	5	\N	\N
60	239	1	\N	\N
61	239	2	\N	\N
62	240	1	\N	\N
63	240	2	\N	\N
64	240	3	\N	\N
69	243	7	\N	\N
70	243	6	\N	\N
71	246	7	\N	\N
72	249	1	\N	\N
73	249	2	\N	\N
74	253	1	\N	\N
75	253	2	\N	\N
76	254	1	\N	\N
77	262	2	\N	\N
78	262	3	\N	\N
79	264	3	\N	\N
80	264	1	\N	\N
81	265	4	\N	\N
82	265	2	\N	\N
83	265	3	\N	\N
84	271	3	\N	\N
85	271	2	\N	\N
\.


--
-- Data for Name: user_educations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_educations (id, user_id, education_id, created_at, updated_at) FROM stdin;
1	227	1	\N	\N
4	211	1	\N	\N
5	232	1	\N	\N
6	232	2	\N	\N
7	233	1	\N	\N
8	233	2	\N	\N
9	237	1	\N	\N
10	237	2	\N	\N
11	239	2	\N	\N
12	239	1	\N	\N
16	243	1	\N	\N
17	244	2	\N	\N
18	246	1	\N	\N
19	245	1	\N	\N
20	248	1	\N	\N
24	263	1	\N	\N
25	260	1	\N	\N
26	265	1	\N	\N
27	264	1	\N	\N
29	268	1	\N	\N
30	270	1	\N	\N
\.


--
-- Data for Name: user_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_images (id, user_id, url, is_hidden, created_at, updated_at) FROM stdin;
1	36	profile-1.jpg	0	2025-03-11 17:18:40	2025-03-11 17:18:40
2	36	profile-2.jpg	0	2025-03-11 17:18:40	2025-03-11 17:18:40
3	36	profile-3.jpg	0	2025-03-11 17:18:40	2025-03-11 17:18:40
4	36	profile-4.png	0	2025-03-11 17:18:40	2025-03-11 17:18:40
5	50	1747898240682ecf80293fa.png	0	2025-05-22 07:17:20	2025-05-22 07:17:20
6	50	17480239296830ba795a303.jpg	0	2025-05-23 18:12:09	2025-05-23 18:12:09
7	156	17480246566830bd50d38f8.jpg	0	2025-05-23 18:24:16	2025-05-23 18:24:16
8	157	17480362126830ea7452dd2.jpg	0	2025-05-23 21:36:52	2025-05-23 21:36:52
9	158	17480728486831799057945.jpg	0	2025-05-24 07:47:28	2025-05-24 07:47:28
10	158	1748072848683179906a116.jpg	0	2025-05-24 07:47:28	2025-05-24 07:47:28
11	169	174832316968354b61560d4.jpg	0	2025-05-27 05:19:29	2025-05-27 05:19:29
12	169	174832316968354b615e842.jpg	0	2025-05-27 05:19:29	2025-05-27 05:19:29
13	169	174832318568354b7180c6a.jpg	0	2025-05-27 05:19:45	2025-05-27 05:19:45
14	169	174832318568354b71888e8.jpg	0	2025-05-27 05:19:45	2025-05-27 05:19:45
15	169	174832337368354c2d1c98e.jpg	0	2025-05-27 05:22:53	2025-05-27 05:22:53
16	169	174832337368354c2d340f6.jpg	0	2025-05-27 05:22:53	2025-05-27 05:22:53
17	174	1748333728683574a07ee0b.jpg	0	2025-05-27 08:15:28	2025-05-27 08:15:28
18	175	1748334722683578826eb4d.jpg	0	2025-05-27 08:32:02	2025-05-27 08:32:02
19	176	174833547768357b75b52fe.jpg	0	2025-05-27 08:44:37	2025-05-27 08:44:37
20	177	17483488046835af84a99dc.jpg	0	2025-05-27 12:26:44	2025-05-27 12:26:44
21	177	17483488046835af84bd1c4.jpg	0	2025-05-27 12:26:44	2025-05-27 12:26:44
22	177	17483488046835af84ccad3.jpg	0	2025-05-27 12:26:44	2025-05-27 12:26:44
23	179	17483527796835bf0b2b96f.jpg	0	2025-05-27 13:32:59	2025-05-27 13:32:59
24	179	17483527796835bf0b34af7.jpg	0	2025-05-27 13:32:59	2025-05-27 13:32:59
25	182	174840932568369bed9a3e5.jpg	0	2025-05-28 05:15:25	2025-05-28 05:15:25
26	182	174840932568369beda077a.jpg	0	2025-05-28 05:15:25	2025-05-28 05:15:25
27	182	174840932568369bedb3bda.jpg	0	2025-05-28 05:15:25	2025-05-28 05:15:25
28	193	1748502852683809444e321.jpg	0	2025-05-29 07:14:12	2025-05-29 07:14:12
29	193	17485028526838094466583.jpg	0	2025-05-29 07:14:12	2025-05-29 07:14:12
30	193	174850285268380944715ae.jpg	0	2025-05-29 07:14:12	2025-05-29 07:14:12
31	194	17485061556838162b5bca9.jpg	0	2025-05-29 08:09:15	2025-05-29 08:09:15
32	194	17485061556838162b675c1.jpg	0	2025-05-29 08:09:15	2025-05-29 08:09:15
33	194	17485061556838162b7029c.jpg	0	2025-05-29 08:09:15	2025-05-29 08:09:15
34	196	174850781368381ca536e6b.jpg	0	2025-05-29 08:36:53	2025-05-29 08:36:53
35	196	174850781368381ca5412ee.jpg	0	2025-05-29 08:36:53	2025-05-29 08:36:53
36	196	174850781368381ca54876a.jpg	0	2025-05-29 08:36:53	2025-05-29 08:36:53
37	200	17486042806839957807ea5.jpg	0	2025-05-30 11:24:40	2025-05-30 11:24:40
38	200	17486042806839957819049.jpg	0	2025-05-30 11:24:40	2025-05-30 11:24:40
39	200	17486042806839957821d65.jpg	0	2025-05-30 11:24:40	2025-05-30 11:24:40
40	201	1748604890683997da4f0a4.jpg	0	2025-05-30 11:34:50	2025-05-30 11:34:50
41	201	1748604890683997da557a4.jpg	0	2025-05-30 11:34:50	2025-05-30 11:34:50
42	201	1748604890683997da6bce1.jpg	0	2025-05-30 11:34:50	2025-05-30 11:34:50
43	202	17486081416839a48dd9700.jpg	0	2025-05-30 12:29:01	2025-05-30 12:29:01
44	202	17486081416839a48de9341.jpg	0	2025-05-30 12:29:01	2025-05-30 12:29:01
45	202	17486081416839a48df065f.jpg	0	2025-05-30 12:29:02	2025-05-30 12:29:02
46	210	1748703785683b1a291031d.jpg	0	2025-05-31 15:03:05	2025-05-31 15:03:05
47	211	1748709791683b319fe392b.jpg	0	2025-05-31 16:43:12	2025-05-31 16:43:12
48	215	1748928138683e868ac3fc3.jpg	0	2025-06-03 05:22:18	2025-06-03 05:22:18
49	215	1748928138683e868ada476.jpg	0	2025-06-03 05:22:19	2025-06-03 05:22:19
50	216	1748939689683eb3a9a07c6.jpg	0	2025-06-03 08:34:49	2025-06-03 08:34:49
51	216	1748939689683eb3a9a8e52.jpg	0	2025-06-03 08:34:49	2025-06-03 08:34:49
52	219	1749019722683fec4a4fb49.jpg	0	2025-06-04 06:48:42	2025-06-04 06:48:42
53	220	1749020877683ff0cd70607.jpg	0	2025-06-04 07:07:57	2025-06-04 07:07:57
54	221	1749021743683ff42fbb998.jpg	0	2025-06-04 07:22:23	2025-06-04 07:22:23
55	221	1749021743683ff42fca599.jpg	0	2025-06-04 07:22:23	2025-06-04 07:22:23
56	223	1749022811683ff85bc4e36.jpg	0	2025-06-04 07:40:11	2025-06-04 07:40:11
57	223	1749022811683ff85bd60e6.jpg	0	2025-06-04 07:40:11	2025-06-04 07:40:11
58	224	1749023861683ffc75c3f7c.jpg	0	2025-06-04 07:57:41	2025-06-04 07:57:41
59	225	17490254006840027828b8d.jpg	0	2025-06-04 08:23:20	2025-06-04 08:23:20
60	225	1749025400684002783bad3.jpg	0	2025-06-04 08:23:20	2025-06-04 08:23:20
62	197	17490468066840561678f78.jpg	0	2025-06-04 14:20:06	2025-06-04 14:20:06
67	197	174904849568405caf57b3a.jpg	0	2025-06-04 14:48:15	2025-06-04 14:48:15
68	228	1749104552684137a818540.jpg	0	2025-06-05 06:22:32	2025-06-05 06:22:32
69	229	1749104744684138686dad6.jpg	0	2025-06-05 06:25:44	2025-06-05 06:25:44
70	230	1749106942684140fe38ebf.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
71	230	1749106942684140fe43950.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
72	230	1749106942684140fe58e01.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
73	230	1749106942684140fe63818.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
74	230	1749106942684140fe6eed3.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
77	231	174910957768414b49db504.jpg	0	2025-06-05 07:46:17	2025-06-05 07:46:17
78	211	174911040368414e835d6e1.jpg	0	2025-06-05 08:00:03	2025-06-05 08:00:03
79	233	174911367368415b490fbfe.jpg	0	2025-06-05 08:54:33	2025-06-05 08:54:33
81	234	174911427068415d9e6eab8.jpg	0	2025-06-05 09:04:30	2025-06-05 09:04:30
82	237	1749124966684187666e55c.jpg	0	2025-06-05 12:02:46	2025-06-05 12:02:46
83	237	174912496668418766819d7.jpg	0	2025-06-05 12:02:46	2025-06-05 12:02:46
84	237	1749124966684187668fbeb.jpg	0	2025-06-05 12:02:46	2025-06-05 12:02:46
85	238	1749128293684194656ebc4.jpg	0	2025-06-05 12:58:13	2025-06-05 12:58:13
86	239	174919239468428ecacac8a.jpg	0	2025-06-06 06:46:34	2025-06-06 06:46:34
87	243	17494604826846a6024b01e.jpg	0	2025-06-09 09:14:42	2025-06-09 09:14:42
88	243	17494604826846a60259405.jpg	0	2025-06-09 09:14:42	2025-06-09 09:14:42
89	243	17494604826846a60266c85.jpg	0	2025-06-09 09:14:42	2025-06-09 09:14:42
90	244	17495472436847f8eb35d6a.jpg	0	2025-06-10 09:20:43	2025-06-10 09:20:43
91	244	17495472436847f8eb404c5.jpg	0	2025-06-10 09:20:43	2025-06-10 09:20:43
92	247	1751027307685e8e6be9648.jpg	0	2025-06-27 12:28:28	2025-06-27 12:28:28
93	251	1752087876686ebd44a82b9.jpg	0	2025-07-09 19:04:36	2025-07-09 19:04:36
94	251	1752088408686ebf58de706.	0	2025-07-09 19:13:29	2025-07-09 19:13:29
95	252	1752128375686f5b7713c4e.	0	2025-07-10 06:19:35	2025-07-10 06:19:35
96	253	1752164678686fe946d2c58.	0	2025-07-10 16:24:39	2025-07-10 16:24:39
97	253	17522218446870c894a320f.	0	2025-07-11 08:17:24	2025-07-11 08:17:24
98	254	17522330296870f44591be3.	0	2025-07-11 11:23:49	2025-07-11 11:23:49
99	254	17522330296870f4459b2eb.	0	2025-07-11 11:23:49	2025-07-11 11:23:49
100	256	17522354226870fd9e0c1f7.	0	2025-07-11 12:03:42	2025-07-11 12:03:42
101	256	17522354226870fd9e13703.	0	2025-07-11 12:03:42	2025-07-11 12:03:42
102	263	175230885968721c7bf2400.	0	2025-07-12 08:27:40	2025-07-12 08:27:40
103	264	17523105396872230b96e11.	0	2025-07-12 08:55:39	2025-07-12 08:55:39
104	264	17523105396872230bb8125.	0	2025-07-12 08:55:39	2025-07-12 08:55:39
105	267	1752393433687366d90b8c6.	0	2025-07-13 07:57:13	2025-07-13 07:57:13
106	268	175240503168739427e3af9.	0	2025-07-13 11:10:32	2025-07-13 11:10:32
\.


--
-- Data for Name: user_marital_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_marital_statuses (id, user_id, marital_status_id, created_at, updated_at) FROM stdin;
1	53	1	\N	\N
2	176	1	\N	\N
3	176	2	\N	\N
4	181	1	\N	\N
5	181	2	\N	\N
6	50	2	\N	\N
7	50	1	\N	\N
8	50	3	\N	\N
9	50	4	\N	\N
10	189	1	\N	\N
11	189	2	\N	\N
12	191	1	\N	\N
13	193	2	\N	\N
14	193	1	\N	\N
15	194	1	\N	\N
16	194	2	\N	\N
17	195	1	\N	\N
18	195	2	\N	\N
19	196	2	\N	\N
20	200	2	\N	\N
21	202	2	\N	\N
22	209	2	\N	\N
23	215	2	\N	\N
24	215	4	\N	\N
31	216	6	\N	\N
32	214	1	\N	\N
33	219	1	\N	\N
34	219	6	\N	\N
35	223	8	\N	\N
36	224	1	\N	\N
37	222	1	\N	\N
38	211	1	\N	\N
39	211	6	\N	\N
40	232	1	\N	\N
41	232	6	\N	\N
42	233	1	\N	\N
43	233	6	\N	\N
44	237	2	\N	\N
45	239	2	\N	\N
46	239	3	\N	\N
47	240	2	\N	\N
48	240	3	\N	\N
49	240	4	\N	\N
55	242	2	\N	\N
56	242	3	\N	\N
57	243	8	\N	\N
58	243	1	\N	\N
59	243	6	\N	\N
60	246	8	\N	\N
61	245	3	\N	\N
62	248	2	\N	\N
63	250	2	\N	\N
65	253	3	\N	\N
66	253	4	\N	\N
67	263	6	\N	\N
68	263	1	\N	\N
69	263	8	\N	\N
70	260	1	\N	\N
71	260	6	\N	\N
72	260	8	\N	\N
73	264	3	\N	\N
74	264	4	\N	\N
75	264	2	\N	\N
76	265	2	\N	\N
79	269	2	\N	\N
80	270	2	\N	\N
\.


--
-- Data for Name: user_matches; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_matches (id, user_id, matched_user_id, match_percentage, created_at, updated_at) FROM stdin;
1	36	48	50	2025-03-11 17:18:40	2025-03-11 17:18:40
2	36	47	70	2025-03-11 17:18:40	2025-03-11 17:18:40
3	35	55	88	2025-05-23 10:35:51	2025-05-23 10:35:51
4	35	57	88	2025-05-23 10:35:51	2025-05-23 10:35:51
5	35	59	77	2025-05-23 10:35:51	2025-05-23 10:35:51
6	35	60	77	2025-05-23 10:35:51	2025-05-23 10:35:51
7	35	61	77	2025-05-23 10:35:51	2025-05-23 10:35:51
8	35	62	88	2025-05-23 10:35:51	2025-05-23 10:35:51
9	35	64	88	2025-05-23 10:35:51	2025-05-23 10:35:51
10	35	65	77	2025-05-23 10:35:51	2025-05-23 10:35:51
11	35	72	88	2025-05-23 10:35:51	2025-05-23 10:35:51
12	35	73	88	2025-05-23 10:35:51	2025-05-23 10:35:51
13	35	126	88	2025-05-23 10:35:51	2025-05-23 10:35:51
14	35	127	100	2025-05-23 10:35:51	2025-05-23 10:35:51
15	35	74	88	2025-05-23 10:35:51	2025-05-23 10:35:51
16	35	77	77	2025-05-23 10:35:51	2025-05-23 10:35:51
17	35	130	88	2025-05-23 10:35:51	2025-05-23 10:35:51
18	35	132	100	2025-05-23 10:35:51	2025-05-23 10:35:51
19	35	134	88	2025-05-23 10:35:51	2025-05-23 10:35:51
20	35	136	100	2025-05-23 10:35:51	2025-05-23 10:35:51
21	35	137	88	2025-05-23 10:35:51	2025-05-23 10:35:51
22	35	138	88	2025-05-23 10:35:51	2025-05-23 10:35:51
23	35	94	100	2025-05-23 10:35:51	2025-05-23 10:35:51
24	35	95	100	2025-05-23 10:35:51	2025-05-23 10:35:51
25	35	96	88	2025-05-23 10:35:51	2025-05-23 10:35:51
26	35	98	88	2025-05-23 10:35:51	2025-05-23 10:35:51
27	35	101	100	2025-05-23 10:35:51	2025-05-23 10:35:51
28	35	103	100	2025-05-23 10:35:51	2025-05-23 10:35:51
29	35	80	88	2025-05-23 10:35:51	2025-05-23 10:35:51
30	35	81	88	2025-05-23 10:35:51	2025-05-23 10:35:51
31	35	82	77	2025-05-23 10:35:51	2025-05-23 10:35:51
32	35	83	77	2025-05-23 10:35:51	2025-05-23 10:35:51
33	35	84	77	2025-05-23 10:35:51	2025-05-23 10:35:51
34	35	87	88	2025-05-23 10:35:51	2025-05-23 10:35:51
35	35	89	88	2025-05-23 10:35:51	2025-05-23 10:35:51
36	35	90	77	2025-05-23 10:35:51	2025-05-23 10:35:51
37	35	91	77	2025-05-23 10:35:51	2025-05-23 10:35:51
38	35	92	88	2025-05-23 10:35:51	2025-05-23 10:35:51
39	35	105	88	2025-05-23 10:35:51	2025-05-23 10:35:51
40	35	106	100	2025-05-23 10:35:51	2025-05-23 10:35:51
41	35	107	100	2025-05-23 10:35:51	2025-05-23 10:35:51
42	35	108	88	2025-05-23 10:35:51	2025-05-23 10:35:51
43	35	109	100	2025-05-23 10:35:51	2025-05-23 10:35:51
44	35	110	100	2025-05-23 10:35:51	2025-05-23 10:35:51
45	35	111	88	2025-05-23 10:35:51	2025-05-23 10:35:51
46	35	112	88	2025-05-23 10:35:51	2025-05-23 10:35:51
47	35	116	88	2025-05-23 10:35:51	2025-05-23 10:35:51
48	35	118	100	2025-05-23 10:35:51	2025-05-23 10:35:51
49	35	121	100	2025-05-23 10:35:51	2025-05-23 10:35:51
50	35	144	88	2025-05-23 10:35:51	2025-05-23 10:35:51
51	35	146	100	2025-05-23 10:35:51	2025-05-23 10:35:51
52	35	150	88	2025-05-23 10:35:51	2025-05-23 10:35:51
53	35	151	100	2025-05-23 10:35:51	2025-05-23 10:35:51
54	165	130	44	2025-05-27 04:57:29	2025-05-27 04:57:29
55	165	98	44	2025-05-27 04:57:29	2025-05-27 04:57:29
56	165	109	55	2025-05-27 04:57:29	2025-05-27 04:57:29
57	165	144	44	2025-05-27 04:57:29	2025-05-27 04:57:29
58	35	166	77	2025-05-27 05:03:18	2025-05-27 05:03:18
59	166	165	77	2025-05-27 05:03:18	2025-05-27 05:03:18
60	166	131	44	2025-05-27 05:03:18	2025-05-27 05:03:18
61	166	142	44	2025-05-27 05:03:18	2025-05-27 05:03:18
62	166	97	44	2025-05-27 05:03:18	2025-05-27 05:03:18
63	166	145	44	2025-05-27 05:03:18	2025-05-27 05:03:18
64	166	139	44	2025-05-27 05:03:18	2025-05-27 05:03:18
67	35	168	77	2025-05-27 05:16:34	2025-05-27 05:16:34
68	168	165	88	2025-05-27 05:16:34	2025-05-27 05:18:14
72	168	66	88	2025-05-27 05:16:34	2025-05-27 05:18:14
71	168	63	100	2025-05-27 05:16:34	2025-05-27 05:18:02
73	168	67	88	2025-05-27 05:16:34	2025-05-27 05:18:14
74	168	68	88	2025-05-27 05:16:34	2025-05-27 05:18:14
76	168	70	88	2025-05-27 05:16:34	2025-05-27 05:18:14
75	168	69	100	2025-05-27 05:16:34	2025-05-27 05:18:02
77	168	71	88	2025-05-27 05:16:34	2025-05-27 05:18:14
79	168	125	88	2025-05-27 05:16:34	2025-05-27 05:18:14
80	168	128	88	2025-05-27 05:16:34	2025-05-27 05:18:14
82	168	76	88	2025-05-27 05:16:34	2025-05-27 05:18:14
83	168	78	88	2025-05-27 05:16:34	2025-05-27 05:18:14
84	168	129	88	2025-05-27 05:16:34	2025-05-27 05:18:14
85	168	131	88	2025-05-27 05:16:34	2025-05-27 05:18:14
87	168	135	88	2025-05-27 05:16:34	2025-05-27 05:18:14
88	168	142	88	2025-05-27 05:16:34	2025-05-27 05:18:14
90	168	99	88	2025-05-27 05:16:34	2025-05-27 05:18:14
91	168	100	100	2025-05-27 05:16:34	2025-05-27 05:18:02
93	168	79	88	2025-05-27 05:16:34	2025-05-27 05:18:14
94	168	85	88	2025-05-27 05:16:34	2025-05-27 05:18:14
96	168	88	88	2025-05-27 05:16:34	2025-05-27 05:18:14
95	168	86	100	2025-05-27 05:16:34	2025-05-27 05:18:02
97	168	93	88	2025-05-27 05:16:34	2025-05-27 05:18:14
98	168	104	88	2025-05-27 05:16:34	2025-05-27 05:18:14
99	168	113	88	2025-05-27 05:16:34	2025-05-27 05:18:14
100	168	114	88	2025-05-27 05:16:34	2025-05-27 05:18:14
102	168	117	88	2025-05-27 05:16:34	2025-05-27 05:18:14
103	168	119	88	2025-05-27 05:16:34	2025-05-27 05:18:14
104	168	120	88	2025-05-27 05:16:34	2025-05-27 05:18:14
105	168	122	88	2025-05-27 05:16:34	2025-05-27 05:18:14
106	168	123	88	2025-05-27 05:16:34	2025-05-27 05:18:14
107	168	145	88	2025-05-27 05:16:34	2025-05-27 05:18:14
66	168	35	88	2025-05-27 05:16:34	2025-05-27 05:18:14
69	168	56	88	2025-05-27 05:16:34	2025-05-27 05:18:14
70	168	58	88	2025-05-27 05:16:34	2025-05-27 05:18:14
81	168	75	88	2025-05-27 05:16:34	2025-05-27 05:18:14
86	168	133	88	2025-05-27 05:16:34	2025-05-27 05:18:14
89	168	97	88	2025-05-27 05:16:34	2025-05-27 05:18:14
92	168	102	88	2025-05-27 05:16:34	2025-05-27 05:18:14
173	173	61	55	2025-05-27 07:40:10	2025-05-27 07:40:10
174	173	62	55	2025-05-27 07:40:10	2025-05-27 07:40:10
175	173	64	55	2025-05-27 07:40:10	2025-05-27 07:40:10
176	173	65	55	2025-05-27 07:40:10	2025-05-27 07:40:10
177	173	72	55	2025-05-27 07:40:10	2025-05-27 07:40:10
178	173	73	55	2025-05-27 07:40:10	2025-05-27 07:40:10
179	173	126	55	2025-05-27 07:40:10	2025-05-27 07:40:10
65	168	54	88	2025-05-27 05:16:34	2025-05-27 05:18:14
78	168	124	88	2025-05-27 05:16:34	2025-05-27 05:18:14
101	168	115	88	2025-05-27 05:16:34	2025-05-27 05:18:14
108	168	143	88	2025-05-27 05:16:34	2025-05-27 05:18:14
109	168	139	88	2025-05-27 05:16:34	2025-05-27 05:18:14
110	168	140	88	2025-05-27 05:16:34	2025-05-27 05:18:14
111	168	141	88	2025-05-27 05:16:34	2025-05-27 05:18:14
112	168	147	88	2025-05-27 05:16:34	2025-05-27 05:18:14
113	168	148	88	2025-05-27 05:16:34	2025-05-27 05:18:14
114	168	149	88	2025-05-27 05:16:34	2025-05-27 05:18:14
115	168	152	88	2025-05-27 05:16:34	2025-05-27 05:18:14
116	168	153	88	2025-05-27 05:16:34	2025-05-27 05:18:14
117	171	54	44	2025-05-27 05:58:03	2025-05-27 05:58:03
118	171	35	44	2025-05-27 05:58:03	2025-05-27 05:58:03
119	35	171	77	2025-05-27 05:58:03	2025-05-27 05:58:03
120	171	165	66	2025-05-27 05:58:03	2025-05-27 05:58:03
121	171	56	44	2025-05-27 05:58:03	2025-05-27 05:58:03
122	171	58	44	2025-05-27 05:58:03	2025-05-27 05:58:03
124	171	66	44	2025-05-27 05:58:03	2025-05-27 05:58:03
125	171	67	44	2025-05-27 05:58:03	2025-05-27 05:58:03
126	171	68	44	2025-05-27 05:58:03	2025-05-27 05:58:03
128	171	70	44	2025-05-27 05:58:03	2025-05-27 05:58:03
129	171	71	44	2025-05-27 05:58:03	2025-05-27 05:58:03
131	171	125	44	2025-05-27 05:58:03	2025-05-27 05:58:03
132	171	128	44	2025-05-27 05:58:03	2025-05-27 05:58:03
133	171	75	44	2025-05-27 05:58:03	2025-05-27 05:58:03
134	171	76	44	2025-05-27 05:58:03	2025-05-27 05:58:03
136	171	129	44	2025-05-27 05:58:03	2025-05-27 05:58:03
137	171	131	55	2025-05-27 05:58:03	2025-05-27 05:58:03
139	171	135	44	2025-05-27 05:58:03	2025-05-27 05:58:03
140	171	142	44	2025-05-27 05:58:03	2025-05-27 05:58:03
141	171	97	44	2025-05-27 05:58:03	2025-05-27 05:58:03
142	171	99	44	2025-05-27 05:58:03	2025-05-27 05:58:03
144	171	102	44	2025-05-27 05:58:03	2025-05-27 05:58:03
145	171	79	55	2025-05-27 05:58:03	2025-05-27 05:58:03
146	171	85	44	2025-05-27 05:58:03	2025-05-27 05:58:03
148	171	88	44	2025-05-27 05:58:03	2025-05-27 05:58:03
149	171	93	55	2025-05-27 05:58:03	2025-05-27 05:58:03
150	171	104	55	2025-05-27 05:58:03	2025-05-27 05:58:03
151	171	113	44	2025-05-27 05:58:03	2025-05-27 05:58:03
152	171	114	44	2025-05-27 05:58:03	2025-05-27 05:58:03
153	171	115	44	2025-05-27 05:58:03	2025-05-27 05:58:03
154	171	117	55	2025-05-27 05:58:03	2025-05-27 05:58:03
155	171	119	44	2025-05-27 05:58:03	2025-05-27 05:58:03
158	171	123	44	2025-05-27 05:58:03	2025-05-27 05:58:03
159	171	145	55	2025-05-27 05:58:03	2025-05-27 05:58:03
160	171	143	44	2025-05-27 05:58:03	2025-05-27 05:58:03
161	171	139	55	2025-05-27 05:58:03	2025-05-27 05:58:03
162	171	140	44	2025-05-27 05:58:03	2025-05-27 05:58:03
164	171	147	44	2025-05-27 05:58:03	2025-05-27 05:58:03
165	171	148	44	2025-05-27 05:58:03	2025-05-27 05:58:03
166	171	149	44	2025-05-27 05:58:03	2025-05-27 05:58:03
167	171	152	55	2025-05-27 05:58:03	2025-05-27 05:58:03
168	171	153	44	2025-05-27 05:58:03	2025-05-27 05:58:03
123	171	63	66	2025-05-27 05:58:03	2025-05-27 06:42:38
127	171	69	55	2025-05-27 05:58:03	2025-05-27 06:42:38
130	171	124	44	2025-05-27 05:58:03	2025-05-27 06:42:38
135	171	78	44	2025-05-27 05:58:03	2025-05-27 06:42:38
138	171	133	44	2025-05-27 05:58:03	2025-05-27 06:42:38
143	171	100	55	2025-05-27 05:58:03	2025-05-27 06:42:38
147	171	86	55	2025-05-27 05:58:03	2025-05-27 06:42:38
156	171	120	44	2025-05-27 05:58:03	2025-05-27 06:42:38
157	171	122	44	2025-05-27 05:58:03	2025-05-27 06:42:38
163	171	141	44	2025-05-27 05:58:03	2025-05-27 06:42:38
169	173	55	55	2025-05-27 07:40:10	2025-05-27 07:40:10
170	173	57	66	2025-05-27 07:40:10	2025-05-27 07:40:10
171	173	59	55	2025-05-27 07:40:10	2025-05-27 07:40:10
172	173	60	55	2025-05-27 07:40:10	2025-05-27 07:40:10
180	173	127	55	2025-05-27 07:40:10	2025-05-27 07:40:10
181	173	166	77	2025-05-27 07:40:10	2025-05-27 07:40:10
182	173	74	55	2025-05-27 07:40:10	2025-05-27 07:40:10
183	173	77	55	2025-05-27 07:40:10	2025-05-27 07:40:10
184	173	130	66	2025-05-27 07:40:10	2025-05-27 07:40:10
185	173	132	55	2025-05-27 07:40:10	2025-05-27 07:40:10
186	173	134	55	2025-05-27 07:40:10	2025-05-27 07:40:10
187	173	136	55	2025-05-27 07:40:10	2025-05-27 07:40:10
188	173	137	66	2025-05-27 07:40:10	2025-05-27 07:40:10
189	173	138	66	2025-05-27 07:40:10	2025-05-27 07:40:10
190	173	168	55	2025-05-27 07:40:10	2025-05-27 07:40:10
191	168	173	88	2025-05-27 07:40:10	2025-05-27 07:40:10
192	173	171	77	2025-05-27 07:40:10	2025-05-27 07:40:10
193	171	173	44	2025-05-27 07:40:10	2025-05-27 07:40:10
194	173	94	55	2025-05-27 07:40:10	2025-05-27 07:40:10
195	173	95	55	2025-05-27 07:40:10	2025-05-27 07:40:10
196	173	96	55	2025-05-27 07:40:10	2025-05-27 07:40:10
197	173	98	66	2025-05-27 07:40:10	2025-05-27 07:40:10
198	173	101	55	2025-05-27 07:40:10	2025-05-27 07:40:10
199	173	103	55	2025-05-27 07:40:10	2025-05-27 07:40:10
200	173	80	55	2025-05-27 07:40:10	2025-05-27 07:40:10
201	173	81	55	2025-05-27 07:40:10	2025-05-27 07:40:10
202	173	82	55	2025-05-27 07:40:10	2025-05-27 07:40:10
203	173	83	55	2025-05-27 07:40:10	2025-05-27 07:40:10
204	173	84	55	2025-05-27 07:40:10	2025-05-27 07:40:10
205	173	87	55	2025-05-27 07:40:10	2025-05-27 07:40:10
206	173	89	55	2025-05-27 07:40:10	2025-05-27 07:40:10
207	173	90	55	2025-05-27 07:40:10	2025-05-27 07:40:10
208	173	91	66	2025-05-27 07:40:10	2025-05-27 07:40:10
209	173	92	55	2025-05-27 07:40:10	2025-05-27 07:40:10
210	173	105	55	2025-05-27 07:40:10	2025-05-27 07:40:10
211	173	106	66	2025-05-27 07:40:10	2025-05-27 07:40:10
212	173	107	55	2025-05-27 07:40:10	2025-05-27 07:40:10
213	173	108	55	2025-05-27 07:40:10	2025-05-27 07:40:10
214	173	109	66	2025-05-27 07:40:10	2025-05-27 07:40:10
215	173	110	55	2025-05-27 07:40:10	2025-05-27 07:40:10
216	173	111	55	2025-05-27 07:40:10	2025-05-27 07:40:10
217	173	112	55	2025-05-27 07:40:10	2025-05-27 07:40:10
218	173	116	55	2025-05-27 07:40:10	2025-05-27 07:40:10
219	173	118	55	2025-05-27 07:40:10	2025-05-27 07:40:10
220	173	121	55	2025-05-27 07:40:10	2025-05-27 07:40:10
221	173	144	55	2025-05-27 07:40:10	2025-05-27 07:40:10
222	173	146	55	2025-05-27 07:40:10	2025-05-27 07:40:10
223	173	150	55	2025-05-27 07:40:10	2025-05-27 07:40:10
224	173	151	55	2025-05-27 07:40:10	2025-05-27 07:40:10
225	174	54	44	2025-05-27 08:26:33	2025-05-27 08:26:33
226	174	35	44	2025-05-27 08:26:33	2025-05-27 08:26:33
227	35	174	77	2025-05-27 08:26:33	2025-05-27 08:26:33
228	174	165	66	2025-05-27 08:26:33	2025-05-27 08:26:33
229	174	56	44	2025-05-27 08:26:33	2025-05-27 08:26:33
230	174	58	44	2025-05-27 08:26:33	2025-05-27 08:26:33
231	174	63	66	2025-05-27 08:26:33	2025-05-27 08:26:33
232	174	66	44	2025-05-27 08:26:33	2025-05-27 08:26:33
233	174	67	44	2025-05-27 08:26:33	2025-05-27 08:26:33
234	174	68	44	2025-05-27 08:26:33	2025-05-27 08:26:33
235	174	69	55	2025-05-27 08:26:33	2025-05-27 08:26:33
236	174	70	44	2025-05-27 08:26:33	2025-05-27 08:26:33
237	174	71	44	2025-05-27 08:26:33	2025-05-27 08:26:33
238	174	124	44	2025-05-27 08:26:33	2025-05-27 08:26:33
239	174	125	44	2025-05-27 08:26:33	2025-05-27 08:26:33
240	174	128	44	2025-05-27 08:26:33	2025-05-27 08:26:33
241	174	75	44	2025-05-27 08:26:33	2025-05-27 08:26:33
242	174	76	44	2025-05-27 08:26:33	2025-05-27 08:26:33
243	174	78	44	2025-05-27 08:26:33	2025-05-27 08:26:33
244	174	129	44	2025-05-27 08:26:33	2025-05-27 08:26:33
245	174	131	55	2025-05-27 08:26:33	2025-05-27 08:26:33
246	174	133	44	2025-05-27 08:26:33	2025-05-27 08:26:33
247	174	135	44	2025-05-27 08:26:33	2025-05-27 08:26:33
248	174	142	44	2025-05-27 08:26:33	2025-05-27 08:26:33
249	174	97	44	2025-05-27 08:26:33	2025-05-27 08:26:33
250	174	99	44	2025-05-27 08:26:33	2025-05-27 08:26:33
251	174	100	55	2025-05-27 08:26:33	2025-05-27 08:26:33
252	174	102	44	2025-05-27 08:26:33	2025-05-27 08:26:33
253	174	79	55	2025-05-27 08:26:33	2025-05-27 08:26:33
254	174	85	44	2025-05-27 08:26:33	2025-05-27 08:26:33
255	174	86	55	2025-05-27 08:26:33	2025-05-27 08:26:33
256	174	88	44	2025-05-27 08:26:33	2025-05-27 08:26:33
257	174	93	55	2025-05-27 08:26:33	2025-05-27 08:26:33
258	174	104	55	2025-05-27 08:26:33	2025-05-27 08:26:33
259	174	113	44	2025-05-27 08:26:33	2025-05-27 08:26:33
260	174	114	44	2025-05-27 08:26:33	2025-05-27 08:26:33
261	174	115	44	2025-05-27 08:26:33	2025-05-27 08:26:33
262	174	117	55	2025-05-27 08:26:33	2025-05-27 08:26:33
263	174	119	44	2025-05-27 08:26:33	2025-05-27 08:26:33
264	174	120	44	2025-05-27 08:26:33	2025-05-27 08:26:33
265	174	122	44	2025-05-27 08:26:33	2025-05-27 08:26:33
266	174	123	44	2025-05-27 08:26:33	2025-05-27 08:26:33
267	174	145	55	2025-05-27 08:26:33	2025-05-27 08:26:33
268	174	143	44	2025-05-27 08:26:33	2025-05-27 08:26:33
269	174	139	55	2025-05-27 08:26:33	2025-05-27 08:26:33
270	174	140	44	2025-05-27 08:26:33	2025-05-27 08:26:33
271	174	141	44	2025-05-27 08:26:33	2025-05-27 08:26:33
272	174	147	44	2025-05-27 08:26:33	2025-05-27 08:26:33
273	174	148	44	2025-05-27 08:26:33	2025-05-27 08:26:33
274	174	149	44	2025-05-27 08:26:33	2025-05-27 08:26:33
275	174	152	55	2025-05-27 08:26:33	2025-05-27 08:26:33
276	174	153	44	2025-05-27 08:26:33	2025-05-27 08:26:33
277	174	173	66	2025-05-27 08:26:33	2025-05-27 08:26:33
278	173	174	55	2025-05-27 08:26:33	2025-05-27 08:26:33
279	176	54	44	2025-05-27 08:45:50	2025-05-27 08:45:50
280	176	35	44	2025-05-27 08:45:50	2025-05-27 08:45:50
281	35	176	77	2025-05-27 08:45:50	2025-05-27 08:45:50
283	176	56	44	2025-05-27 08:45:50	2025-05-27 08:45:50
284	176	58	44	2025-05-27 08:45:50	2025-05-27 08:45:50
286	176	66	44	2025-05-27 08:45:50	2025-05-27 08:45:50
287	176	67	44	2025-05-27 08:45:50	2025-05-27 08:45:50
288	176	68	44	2025-05-27 08:45:50	2025-05-27 08:45:50
290	176	70	44	2025-05-27 08:45:50	2025-05-27 08:45:50
291	176	71	44	2025-05-27 08:45:50	2025-05-27 08:45:50
293	176	125	44	2025-05-27 08:45:50	2025-05-27 08:45:50
294	176	128	44	2025-05-27 08:45:50	2025-05-27 08:45:50
295	176	75	44	2025-05-27 08:45:50	2025-05-27 08:45:50
296	176	76	44	2025-05-27 08:45:50	2025-05-27 08:45:50
297	176	78	44	2025-05-27 08:45:50	2025-05-27 08:45:50
298	176	129	44	2025-05-27 08:45:50	2025-05-27 08:45:50
300	176	133	44	2025-05-27 08:45:50	2025-05-27 08:45:50
301	176	135	44	2025-05-27 08:45:50	2025-05-27 08:45:50
302	176	142	44	2025-05-27 08:45:50	2025-05-27 08:45:50
303	176	97	44	2025-05-27 08:45:50	2025-05-27 08:45:50
304	176	99	44	2025-05-27 08:45:50	2025-05-27 08:45:50
306	176	102	44	2025-05-27 08:45:50	2025-05-27 08:45:50
308	176	85	44	2025-05-27 08:45:50	2025-05-27 08:45:50
310	176	88	44	2025-05-27 08:45:50	2025-05-27 08:45:50
313	176	113	44	2025-05-27 08:45:50	2025-05-27 08:45:50
314	176	114	44	2025-05-27 08:45:50	2025-05-27 08:45:50
315	176	115	44	2025-05-27 08:45:50	2025-05-27 08:45:50
317	176	119	44	2025-05-27 08:45:50	2025-05-27 08:45:50
289	176	69	44	2025-05-27 08:45:50	2025-05-27 08:56:27
299	176	131	44	2025-05-27 08:45:50	2025-05-27 08:45:59
305	176	100	44	2025-05-27 08:45:50	2025-05-27 08:45:59
309	176	86	44	2025-05-27 08:45:50	2025-05-27 08:45:59
311	176	93	44	2025-05-27 08:45:50	2025-05-27 08:45:59
316	176	117	44	2025-05-27 08:45:50	2025-05-27 08:45:59
285	176	63	44	2025-05-27 08:45:50	2025-05-27 08:56:27
312	176	104	44	2025-05-27 08:45:50	2025-05-27 09:01:14
292	176	124	44	2025-05-27 08:45:50	2025-05-27 09:01:14
318	176	120	44	2025-05-27 08:45:50	2025-05-27 08:45:50
319	176	122	44	2025-05-27 08:45:50	2025-05-27 08:45:50
320	176	123	44	2025-05-27 08:45:50	2025-05-27 08:45:50
322	176	143	44	2025-05-27 08:45:50	2025-05-27 08:45:50
324	176	140	44	2025-05-27 08:45:50	2025-05-27 08:45:50
325	176	141	44	2025-05-27 08:45:50	2025-05-27 08:45:50
326	176	147	44	2025-05-27 08:45:50	2025-05-27 08:45:50
327	176	148	44	2025-05-27 08:45:50	2025-05-27 08:45:50
328	176	149	44	2025-05-27 08:45:50	2025-05-27 08:45:50
330	176	153	44	2025-05-27 08:45:50	2025-05-27 08:45:50
332	173	176	55	2025-05-27 08:45:50	2025-05-27 08:45:50
321	176	145	44	2025-05-27 08:45:50	2025-05-27 08:45:59
323	176	139	44	2025-05-27 08:45:50	2025-05-27 08:45:59
329	176	152	44	2025-05-27 08:45:50	2025-05-27 08:45:59
282	176	165	44	2025-05-27 08:45:50	2025-05-27 09:01:14
307	176	79	44	2025-05-27 08:45:50	2025-05-27 09:01:14
331	176	173	44	2025-05-27 08:45:50	2025-05-27 09:01:14
334	174	177	44	2025-05-27 12:51:45	2025-05-27 12:51:45
337	177	59	44	2025-05-27 12:51:45	2025-05-27 12:51:45
338	177	60	44	2025-05-27 12:51:45	2025-05-27 12:51:45
340	177	62	44	2025-05-27 12:51:45	2025-05-27 12:51:45
341	177	64	44	2025-05-27 12:51:45	2025-05-27 12:51:45
342	177	65	44	2025-05-27 12:51:45	2025-05-27 12:51:45
343	177	72	44	2025-05-27 12:51:45	2025-05-27 12:51:45
344	177	73	44	2025-05-27 12:51:45	2025-05-27 12:51:45
345	177	126	44	2025-05-27 12:51:45	2025-05-27 12:51:45
346	177	127	44	2025-05-27 12:51:45	2025-05-27 12:51:45
348	177	74	44	2025-05-27 12:51:45	2025-05-27 12:51:45
349	177	77	44	2025-05-27 12:51:45	2025-05-27 12:51:45
350	177	130	44	2025-05-27 12:51:45	2025-05-27 12:51:45
351	177	176	55	2025-05-27 12:51:45	2025-05-27 12:51:45
352	177	132	44	2025-05-27 12:51:45	2025-05-27 12:51:45
353	177	134	44	2025-05-27 12:51:45	2025-05-27 12:51:45
354	177	136	44	2025-05-27 12:51:45	2025-05-27 12:51:45
355	177	137	44	2025-05-27 12:51:45	2025-05-27 12:51:45
356	177	138	44	2025-05-27 12:51:45	2025-05-27 12:51:45
357	177	168	55	2025-05-27 12:51:45	2025-05-27 12:51:45
358	168	177	88	2025-05-27 12:51:45	2025-05-27 12:51:45
360	171	177	44	2025-05-27 12:51:45	2025-05-27 12:51:45
361	177	94	44	2025-05-27 12:51:45	2025-05-27 12:51:45
362	177	95	44	2025-05-27 12:51:45	2025-05-27 12:51:45
363	177	96	44	2025-05-27 12:51:45	2025-05-27 12:51:45
364	177	98	44	2025-05-27 12:51:45	2025-05-27 12:51:45
365	177	101	44	2025-05-27 12:51:45	2025-05-27 12:51:45
367	177	80	44	2025-05-27 12:51:45	2025-05-27 12:51:45
368	177	81	44	2025-05-27 12:51:45	2025-05-27 12:51:45
369	177	82	44	2025-05-27 12:51:45	2025-05-27 12:51:45
370	177	83	44	2025-05-27 12:51:45	2025-05-27 12:51:45
371	177	84	44	2025-05-27 12:51:45	2025-05-27 12:51:45
372	177	87	44	2025-05-27 12:51:45	2025-05-27 12:51:45
373	177	89	44	2025-05-27 12:51:45	2025-05-27 12:51:45
374	177	90	44	2025-05-27 12:51:45	2025-05-27 12:51:45
375	177	91	55	2025-05-27 12:51:45	2025-05-27 12:51:45
377	177	105	44	2025-05-27 12:51:45	2025-05-27 12:51:45
378	177	106	44	2025-05-27 12:51:45	2025-05-27 12:51:45
379	177	107	44	2025-05-27 12:51:45	2025-05-27 12:51:45
380	177	108	44	2025-05-27 12:51:45	2025-05-27 12:51:45
381	177	109	44	2025-05-27 12:51:45	2025-05-27 12:51:45
382	177	110	44	2025-05-27 12:51:45	2025-05-27 12:51:45
383	177	111	44	2025-05-27 12:51:45	2025-05-27 12:51:45
384	177	112	44	2025-05-27 12:51:45	2025-05-27 12:51:45
385	177	116	44	2025-05-27 12:51:45	2025-05-27 12:51:45
386	177	118	44	2025-05-27 12:51:45	2025-05-27 12:51:45
387	177	121	44	2025-05-27 12:51:45	2025-05-27 12:51:45
388	177	144	44	2025-05-27 12:51:45	2025-05-27 12:51:45
389	177	146	44	2025-05-27 12:51:45	2025-05-27 12:51:45
390	177	150	44	2025-05-27 12:51:45	2025-05-27 12:51:45
391	177	151	44	2025-05-27 12:51:45	2025-05-27 12:51:45
333	177	174	44	2025-05-27 12:51:45	2025-05-27 12:52:53
335	177	55	44	2025-05-27 12:51:45	2025-05-27 12:52:53
336	177	57	44	2025-05-27 12:51:45	2025-05-27 12:52:53
339	177	61	44	2025-05-27 12:51:45	2025-05-27 12:52:53
347	177	166	44	2025-05-27 12:51:45	2025-05-27 12:52:53
359	177	171	44	2025-05-27 12:51:45	2025-05-27 12:52:53
366	177	103	44	2025-05-27 12:51:45	2025-05-27 12:52:53
376	177	92	44	2025-05-27 12:51:45	2025-05-27 12:52:53
394	35	179	77	2025-05-27 13:39:28	2025-05-27 13:39:28
393	179	35	44	2025-05-27 13:39:28	2025-05-27 13:40:03
395	179	165	55	2025-05-27 13:39:28	2025-05-27 13:40:03
396	179	56	44	2025-05-27 13:39:28	2025-05-27 13:40:03
398	179	63	44	2025-05-27 13:39:28	2025-05-28 10:05:22
410	179	78	55	2025-05-27 13:39:28	2025-05-28 10:05:22
399	179	66	44	2025-05-27 13:39:28	2025-05-27 13:40:03
400	179	67	44	2025-05-27 13:39:28	2025-05-27 13:40:03
401	179	68	44	2025-05-27 13:39:28	2025-05-27 13:40:03
402	179	69	44	2025-05-27 13:39:28	2025-05-27 13:40:03
403	179	70	44	2025-05-27 13:39:28	2025-05-27 13:40:03
404	179	71	44	2025-05-27 13:39:28	2025-05-27 13:40:03
405	179	124	55	2025-05-27 13:39:28	2025-05-27 13:40:03
406	179	125	44	2025-05-27 13:39:28	2025-05-27 13:40:03
407	179	128	55	2025-05-27 13:39:28	2025-05-27 13:40:03
408	179	75	44	2025-05-27 13:39:28	2025-05-27 13:40:03
421	179	79	44	2025-05-27 13:39:28	2025-05-28 10:05:22
411	179	129	44	2025-05-27 13:39:28	2025-05-27 13:40:03
412	179	131	66	2025-05-27 13:39:28	2025-05-27 13:40:03
413	179	133	55	2025-05-27 13:39:28	2025-05-27 13:40:03
414	179	135	44	2025-05-27 13:39:28	2025-05-27 13:40:03
415	179	142	44	2025-05-27 13:39:28	2025-05-27 13:40:03
416	179	177	44	2025-05-27 13:39:28	2025-05-27 13:40:03
417	179	97	44	2025-05-27 13:39:28	2025-05-27 13:40:03
418	179	99	55	2025-05-27 13:39:28	2025-05-27 13:40:03
419	179	100	55	2025-05-27 13:39:28	2025-05-27 13:40:03
420	179	102	44	2025-05-27 13:39:28	2025-05-27 13:40:03
397	179	58	44	2025-05-27 13:39:28	2025-05-28 10:05:22
446	173	179	55	2025-05-27 13:39:28	2025-05-27 13:39:28
392	179	54	44	2025-05-27 13:39:28	2025-05-27 13:40:03
409	179	76	44	2025-05-27 13:39:28	2025-05-27 13:40:03
423	179	86	55	2025-05-27 13:39:28	2025-05-28 10:05:22
424	179	88	44	2025-05-27 13:39:28	2025-05-28 10:05:22
425	179	93	44	2025-05-27 13:39:28	2025-05-28 10:05:22
445	179	173	44	2025-05-27 13:39:28	2025-05-28 10:05:22
426	179	104	55	2025-05-27 13:39:28	2025-05-27 13:40:03
427	179	113	44	2025-05-27 13:39:28	2025-05-27 13:40:03
428	179	114	55	2025-05-27 13:39:28	2025-05-27 13:40:03
429	179	115	55	2025-05-27 13:39:28	2025-05-27 13:40:03
430	179	117	55	2025-05-27 13:39:28	2025-05-27 13:40:03
431	179	119	44	2025-05-27 13:39:28	2025-05-27 13:40:03
432	179	120	55	2025-05-27 13:39:28	2025-05-27 13:40:03
433	179	122	55	2025-05-27 13:39:28	2025-05-27 13:40:03
434	179	123	44	2025-05-27 13:39:28	2025-05-27 13:40:03
435	179	145	44	2025-05-27 13:39:28	2025-05-27 13:40:03
436	179	143	55	2025-05-27 13:39:28	2025-05-27 13:40:03
437	179	139	55	2025-05-27 13:39:28	2025-05-27 13:40:03
438	179	140	55	2025-05-27 13:39:28	2025-05-27 13:40:03
439	179	141	55	2025-05-27 13:39:28	2025-05-27 13:40:03
440	179	147	55	2025-05-27 13:39:28	2025-05-27 13:40:03
441	179	148	44	2025-05-27 13:39:28	2025-05-27 13:40:03
442	179	149	44	2025-05-27 13:39:28	2025-05-27 13:40:03
443	179	152	55	2025-05-27 13:39:28	2025-05-27 13:40:03
444	179	153	44	2025-05-27 13:39:28	2025-05-27 13:40:03
447	53	54	44	2025-05-27 16:32:49	2025-05-27 16:32:49
448	53	35	44	2025-05-27 16:32:49	2025-05-27 16:32:49
449	35	53	77	2025-05-27 16:32:49	2025-05-27 16:32:49
450	53	165	66	2025-05-27 16:32:49	2025-05-27 16:32:49
451	53	63	55	2025-05-27 16:32:50	2025-05-27 16:32:50
452	53	69	44	2025-05-27 16:32:50	2025-05-27 16:32:50
453	53	124	44	2025-05-27 16:32:50	2025-05-27 16:32:50
454	53	125	44	2025-05-27 16:32:50	2025-05-27 16:32:50
455	53	128	44	2025-05-27 16:32:50	2025-05-27 16:32:50
456	53	129	44	2025-05-27 16:32:50	2025-05-27 16:32:50
457	53	131	55	2025-05-27 16:32:50	2025-05-27 16:32:50
458	53	133	44	2025-05-27 16:32:50	2025-05-27 16:32:50
459	53	135	44	2025-05-27 16:32:50	2025-05-27 16:32:50
460	53	142	44	2025-05-27 16:32:50	2025-05-27 16:32:50
461	53	177	55	2025-05-27 16:32:50	2025-05-27 16:32:50
462	53	97	44	2025-05-27 16:32:50	2025-05-27 16:32:50
463	53	99	44	2025-05-27 16:32:50	2025-05-27 16:32:50
464	53	100	55	2025-05-27 16:32:50	2025-05-27 16:32:50
465	53	102	44	2025-05-27 16:32:50	2025-05-27 16:32:50
466	53	79	44	2025-05-27 16:32:50	2025-05-27 16:32:50
467	53	86	44	2025-05-27 16:32:50	2025-05-27 16:32:50
468	53	93	44	2025-05-27 16:32:50	2025-05-27 16:32:50
469	53	104	55	2025-05-27 16:32:50	2025-05-27 16:32:50
470	53	113	44	2025-05-27 16:32:50	2025-05-27 16:32:50
471	53	114	44	2025-05-27 16:32:50	2025-05-27 16:32:50
472	53	115	44	2025-05-27 16:32:50	2025-05-27 16:32:50
473	53	117	55	2025-05-27 16:32:50	2025-05-27 16:32:50
474	53	119	44	2025-05-27 16:32:50	2025-05-27 16:32:50
475	53	120	44	2025-05-27 16:32:50	2025-05-27 16:32:50
476	53	122	44	2025-05-27 16:32:50	2025-05-27 16:32:50
477	53	123	44	2025-05-27 16:32:50	2025-05-27 16:32:50
478	53	145	55	2025-05-27 16:32:50	2025-05-27 16:32:50
479	53	143	44	2025-05-27 16:32:50	2025-05-27 16:32:50
480	53	139	55	2025-05-27 16:32:50	2025-05-27 16:32:50
481	53	140	44	2025-05-27 16:32:50	2025-05-27 16:32:50
482	53	141	44	2025-05-27 16:32:50	2025-05-27 16:32:50
483	53	147	44	2025-05-27 16:32:50	2025-05-27 16:32:50
484	53	148	44	2025-05-27 16:32:50	2025-05-27 16:32:50
485	53	149	44	2025-05-27 16:32:50	2025-05-27 16:32:50
486	53	152	55	2025-05-27 16:32:50	2025-05-27 16:32:50
487	53	153	44	2025-05-27 16:32:50	2025-05-27 16:32:50
488	53	173	55	2025-05-27 16:32:50	2025-05-27 16:32:50
489	173	53	55	2025-05-27 16:32:50	2025-05-27 16:32:50
490	176	177	44	2025-05-27 17:23:34	2025-05-27 17:23:34
491	181	54	44	2025-05-27 18:20:05	2025-05-27 18:20:05
492	181	35	44	2025-05-27 18:20:05	2025-05-27 18:20:05
493	35	181	77	2025-05-27 18:20:05	2025-05-27 18:20:05
495	181	56	44	2025-05-27 18:20:05	2025-05-27 18:20:05
496	181	58	44	2025-05-27 18:20:05	2025-05-27 18:20:05
498	181	66	44	2025-05-27 18:20:05	2025-05-27 18:20:05
499	181	67	44	2025-05-27 18:20:05	2025-05-27 18:20:05
500	181	68	44	2025-05-27 18:20:05	2025-05-27 18:20:05
502	181	70	44	2025-05-27 18:20:05	2025-05-27 18:20:05
503	181	71	44	2025-05-27 18:20:05	2025-05-27 18:20:05
504	181	124	44	2025-05-27 18:20:05	2025-05-27 18:20:05
505	181	125	44	2025-05-27 18:20:05	2025-05-27 18:20:05
506	181	128	44	2025-05-27 18:20:05	2025-05-27 18:20:05
507	181	75	44	2025-05-27 18:20:05	2025-05-27 18:20:05
508	181	76	44	2025-05-27 18:20:05	2025-05-27 18:20:05
509	181	78	44	2025-05-27 18:20:05	2025-05-27 18:20:05
510	181	129	44	2025-05-27 18:20:05	2025-05-27 18:20:05
511	181	131	55	2025-05-27 18:20:05	2025-05-27 18:20:05
512	181	133	44	2025-05-27 18:20:05	2025-05-27 18:20:05
513	181	135	44	2025-05-27 18:20:05	2025-05-27 18:20:05
514	181	142	44	2025-05-27 18:20:05	2025-05-27 18:20:05
516	181	97	44	2025-05-27 18:20:05	2025-05-27 18:20:05
517	181	99	44	2025-05-27 18:20:05	2025-05-27 18:20:05
518	181	100	55	2025-05-27 18:20:05	2025-05-27 18:20:05
519	181	102	44	2025-05-27 18:20:05	2025-05-27 18:20:05
521	181	85	44	2025-05-27 18:20:05	2025-05-27 18:20:05
523	181	88	44	2025-05-27 18:20:05	2025-05-27 18:20:05
525	181	104	55	2025-05-27 18:20:05	2025-05-27 18:20:05
515	181	177	55	2025-05-27 18:20:05	2025-05-27 18:23:44
501	181	69	44	2025-05-27 18:20:05	2025-05-27 18:20:13
522	181	86	44	2025-05-27 18:20:05	2025-05-27 18:20:13
524	181	93	44	2025-05-27 18:20:05	2025-05-27 18:20:13
520	181	79	44	2025-05-27 18:20:05	2025-05-27 18:23:44
422	179	85	44	2025-05-27 13:39:28	2025-05-28 10:05:22
526	181	113	44	2025-05-27 18:20:05	2025-05-27 18:20:05
527	181	114	44	2025-05-27 18:20:05	2025-05-27 18:20:05
528	181	115	44	2025-05-27 18:20:05	2025-05-27 18:20:05
530	181	119	44	2025-05-27 18:20:05	2025-05-27 18:20:05
531	181	120	44	2025-05-27 18:20:05	2025-05-27 18:20:05
532	181	122	44	2025-05-27 18:20:05	2025-05-27 18:20:05
533	181	123	44	2025-05-27 18:20:05	2025-05-27 18:20:05
534	181	145	55	2025-05-27 18:20:05	2025-05-27 18:20:05
535	181	143	44	2025-05-27 18:20:05	2025-05-27 18:20:05
536	181	139	55	2025-05-27 18:20:05	2025-05-27 18:20:05
537	181	140	44	2025-05-27 18:20:05	2025-05-27 18:20:05
538	181	141	44	2025-05-27 18:20:05	2025-05-27 18:20:05
539	181	147	44	2025-05-27 18:20:05	2025-05-27 18:20:05
540	181	148	44	2025-05-27 18:20:05	2025-05-27 18:20:05
541	181	149	44	2025-05-27 18:20:05	2025-05-27 18:20:05
542	181	152	55	2025-05-27 18:20:05	2025-05-27 18:20:05
543	181	153	44	2025-05-27 18:20:05	2025-05-27 18:20:05
545	173	181	55	2025-05-27 18:20:05	2025-05-27 18:20:05
494	181	165	55	2025-05-27 18:20:05	2025-05-27 18:20:13
529	181	117	44	2025-05-27 18:20:05	2025-05-27 18:20:13
570	50	138	66	2025-05-28 08:20:55	2025-05-28 08:49:06
497	181	63	44	2025-05-27 18:20:05	2025-05-27 18:23:44
544	181	173	44	2025-05-27 18:20:05	2025-05-27 18:23:44
547	174	50	44	2025-05-28 08:20:55	2025-05-28 08:20:55
572	168	50	88	2025-05-28 08:20:55	2025-05-28 08:20:55
574	171	50	44	2025-05-28 08:20:55	2025-05-28 08:20:55
562	50	74	66	2025-05-28 08:20:55	2025-05-28 14:26:46
601	50	116	66	2025-05-28 08:20:55	2025-05-28 14:26:46
608	50	53	77	2025-05-28 08:20:55	2025-05-28 14:26:46
550	50	57	66	2025-05-28 08:20:55	2025-05-28 08:48:58
556	50	65	44	2025-05-28 08:20:55	2025-05-28 08:49:06
559	50	126	55	2025-05-28 08:20:55	2025-05-28 08:49:06
609	189	54	77	2025-05-28 17:42:58	2025-05-28 17:42:58
554	50	62	55	2025-05-28 08:20:55	2025-05-28 08:48:58
557	50	72	55	2025-05-28 08:20:55	2025-05-28 08:48:58
560	50	127	66	2025-05-28 08:20:55	2025-05-28 08:48:58
546	50	174	66	2025-05-28 08:20:55	2025-05-28 14:26:46
579	50	96	55	2025-05-28 08:20:55	2025-05-28 08:49:07
580	50	98	66	2025-05-28 08:20:55	2025-05-28 08:49:07
548	50	181	88	2025-05-28 08:20:55	2025-05-28 14:26:46
585	50	82	44	2025-05-28 08:20:55	2025-05-28 08:49:07
568	50	136	66	2025-05-28 08:20:55	2025-05-28 08:48:58
586	50	83	44	2025-05-28 08:20:55	2025-05-28 08:49:07
590	50	90	44	2025-05-28 08:20:55	2025-05-28 08:49:07
591	50	91	55	2025-05-28 08:20:55	2025-05-28 08:49:07
593	50	105	55	2025-05-28 08:20:55	2025-05-28 08:49:07
596	50	108	55	2025-05-28 08:20:55	2025-05-28 08:49:07
577	50	94	66	2025-05-28 08:20:55	2025-05-28 08:48:58
549	50	55	55	2025-05-28 08:20:55	2025-05-28 14:26:46
599	50	111	55	2025-05-28 08:20:55	2025-05-28 08:49:07
600	50	112	55	2025-05-28 08:20:55	2025-05-28 08:49:07
581	50	101	66	2025-05-28 08:20:55	2025-05-28 08:48:58
553	50	61	44	2025-05-28 08:20:55	2025-05-28 14:26:46
583	50	80	55	2025-05-28 08:20:55	2025-05-28 08:48:58
584	50	81	55	2025-05-28 08:20:55	2025-05-28 08:48:58
565	50	176	77	2025-05-28 08:20:55	2025-05-28 14:26:46
604	50	144	55	2025-05-28 08:20:55	2025-05-28 08:49:07
606	50	150	55	2025-05-28 08:20:55	2025-05-28 08:49:07
588	50	87	55	2025-05-28 08:20:55	2025-05-28 08:48:58
589	50	89	55	2025-05-28 08:20:55	2025-05-28 08:48:58
566	50	132	77	2025-05-28 08:20:55	2025-05-28 14:26:46
576	179	50	66	2025-05-28 08:20:55	2025-05-28 10:05:16
571	50	168	44	2025-05-28 08:20:55	2025-05-28 14:26:46
594	50	106	77	2025-05-28 08:20:55	2025-05-28 08:48:58
595	50	107	66	2025-05-28 08:20:55	2025-05-28 08:48:58
555	50	64	66	2025-05-28 08:20:55	2025-05-28 14:26:46
597	50	109	77	2025-05-28 08:20:55	2025-05-28 08:48:58
598	50	110	66	2025-05-28 08:20:55	2025-05-28 08:48:58
573	50	171	66	2025-05-28 08:20:55	2025-05-28 14:26:46
578	50	95	77	2025-05-28 08:20:55	2025-05-28 14:26:46
602	50	118	66	2025-05-28 08:20:55	2025-05-28 08:48:58
603	50	121	66	2025-05-28 08:20:55	2025-05-28 08:48:58
582	50	103	66	2025-05-28 08:20:55	2025-05-28 14:26:46
605	50	146	66	2025-05-28 08:20:55	2025-05-28 08:48:58
592	50	92	55	2025-05-28 08:20:55	2025-05-28 14:26:46
607	50	151	66	2025-05-28 08:20:55	2025-05-28 08:48:58
551	50	59	44	2025-05-28 08:20:55	2025-05-28 08:49:06
552	50	60	44	2025-05-28 08:20:55	2025-05-28 08:49:06
561	50	166	77	2025-05-28 08:20:55	2025-05-28 08:49:06
563	50	77	44	2025-05-28 08:20:55	2025-05-28 08:49:06
564	50	130	66	2025-05-28 08:20:55	2025-05-28 08:49:06
558	50	73	66	2025-05-28 08:20:55	2025-05-28 14:26:46
567	50	134	55	2025-05-28 08:20:55	2025-05-28 08:49:06
569	50	137	66	2025-05-28 08:20:55	2025-05-28 08:49:06
587	50	84	44	2025-05-28 08:20:55	2025-05-28 08:49:07
620	189	124	77	2025-05-28 17:42:58	2025-05-28 17:42:58
621	189	125	77	2025-05-28 17:42:58	2025-05-28 17:42:58
627	189	50	88	2025-05-28 17:42:58	2025-05-28 17:42:58
611	189	56	66	2025-05-28 17:42:58	2025-05-28 17:43:10
612	189	58	55	2025-05-28 17:42:58	2025-05-28 17:43:10
613	189	63	77	2025-05-28 17:42:58	2025-05-28 17:43:10
614	189	66	55	2025-05-28 17:42:58	2025-05-28 17:43:10
616	189	68	55	2025-05-28 17:42:58	2025-05-28 17:43:10
617	189	69	66	2025-05-28 17:42:58	2025-05-28 17:43:10
618	189	70	55	2025-05-28 17:42:58	2025-05-28 17:43:10
619	189	71	66	2025-05-28 17:42:58	2025-05-28 17:43:10
622	189	128	66	2025-05-28 17:42:58	2025-05-28 17:43:10
623	189	75	55	2025-05-28 17:42:58	2025-05-28 17:43:10
624	189	76	55	2025-05-28 17:42:58	2025-05-28 17:43:10
625	189	78	55	2025-05-28 17:42:58	2025-05-28 17:43:10
626	189	129	66	2025-05-28 17:42:58	2025-05-28 17:43:10
575	50	179	44	2025-05-28 08:20:55	2025-05-29 18:10:55
628	50	189	44	2025-05-28 17:42:58	2025-05-28 17:42:58
629	189	131	77	2025-05-28 17:42:58	2025-05-28 17:42:58
631	189	135	77	2025-05-28 17:42:58	2025-05-28 17:42:58
632	189	142	77	2025-05-28 17:42:58	2025-05-28 17:42:58
635	189	99	77	2025-05-28 17:42:58	2025-05-28 17:42:58
636	189	100	88	2025-05-28 17:42:58	2025-05-28 17:42:58
637	189	102	77	2025-05-28 17:42:58	2025-05-28 17:42:58
643	189	104	77	2025-05-28 17:42:58	2025-05-28 17:42:58
646	189	115	77	2025-05-28 17:42:58	2025-05-28 17:42:58
650	189	122	77	2025-05-28 17:42:58	2025-05-28 17:42:58
652	189	145	88	2025-05-28 17:42:58	2025-05-28 17:42:58
654	189	139	77	2025-05-28 17:42:58	2025-05-28 17:42:58
656	189	141	77	2025-05-28 17:42:58	2025-05-28 17:42:58
658	189	148	77	2025-05-28 17:42:58	2025-05-28 17:42:58
660	189	152	77	2025-05-28 17:42:58	2025-05-28 17:42:58
661	189	153	77	2025-05-28 17:42:58	2025-05-28 17:42:58
663	173	189	55	2025-05-28 17:42:58	2025-05-28 17:42:58
610	189	165	77	2025-05-28 17:42:58	2025-05-28 17:43:10
615	189	67	66	2025-05-28 17:42:58	2025-05-28 17:43:10
630	189	133	66	2025-05-28 17:42:58	2025-05-28 17:43:10
633	189	177	88	2025-05-28 17:42:58	2025-05-28 17:43:10
634	189	97	66	2025-05-28 17:42:58	2025-05-28 17:43:10
638	189	79	66	2025-05-28 17:42:58	2025-05-28 17:43:10
639	189	85	55	2025-05-28 17:42:58	2025-05-28 17:43:10
640	189	86	66	2025-05-28 17:42:58	2025-05-28 17:43:10
641	189	88	55	2025-05-28 17:42:58	2025-05-28 17:43:10
642	189	93	55	2025-05-28 17:42:58	2025-05-28 17:43:10
644	189	113	66	2025-05-28 17:42:58	2025-05-28 17:43:10
645	189	114	66	2025-05-28 17:42:58	2025-05-28 17:43:10
647	189	117	77	2025-05-28 17:42:58	2025-05-28 17:43:10
648	189	119	66	2025-05-28 17:42:58	2025-05-28 17:43:10
649	189	120	66	2025-05-28 17:42:58	2025-05-28 17:43:10
651	189	123	66	2025-05-28 17:42:58	2025-05-28 17:43:10
653	189	143	66	2025-05-28 17:42:58	2025-05-28 17:43:10
655	189	140	66	2025-05-28 17:42:58	2025-05-28 17:43:10
657	189	147	66	2025-05-28 17:42:58	2025-05-28 17:43:10
659	189	149	66	2025-05-28 17:42:58	2025-05-28 17:43:10
662	189	173	66	2025-05-28 17:42:58	2025-05-28 17:43:10
664	191	174	88	2025-05-28 17:52:07	2025-05-28 17:52:07
665	174	191	44	2025-05-28 17:52:07	2025-05-28 17:52:07
666	191	181	100	2025-05-28 17:52:07	2025-05-28 17:52:07
667	191	55	88	2025-05-28 17:52:07	2025-05-28 17:52:07
668	191	57	88	2025-05-28 17:52:07	2025-05-28 17:52:07
669	191	59	88	2025-05-28 17:52:07	2025-05-28 17:52:07
670	191	60	88	2025-05-28 17:52:07	2025-05-28 17:52:07
671	191	61	88	2025-05-28 17:52:07	2025-05-28 17:52:07
672	191	62	88	2025-05-28 17:52:07	2025-05-28 17:52:07
673	191	64	88	2025-05-28 17:52:07	2025-05-28 17:52:07
674	191	65	88	2025-05-28 17:52:07	2025-05-28 17:52:07
675	191	72	88	2025-05-28 17:52:07	2025-05-28 17:52:07
676	191	73	88	2025-05-28 17:52:07	2025-05-28 17:52:07
677	191	126	100	2025-05-28 17:52:07	2025-05-28 17:52:07
678	191	127	100	2025-05-28 17:52:07	2025-05-28 17:52:07
679	191	166	100	2025-05-28 17:52:07	2025-05-28 17:52:07
680	191	74	88	2025-05-28 17:52:07	2025-05-28 17:52:07
681	191	77	88	2025-05-28 17:52:07	2025-05-28 17:52:07
682	191	130	100	2025-05-28 17:52:07	2025-05-28 17:52:07
683	191	176	88	2025-05-28 17:52:07	2025-05-28 17:52:07
684	191	132	100	2025-05-28 17:52:07	2025-05-28 17:52:07
685	191	134	100	2025-05-28 17:52:07	2025-05-28 17:52:07
686	191	136	100	2025-05-28 17:52:07	2025-05-28 17:52:07
687	191	137	100	2025-05-28 17:52:07	2025-05-28 17:52:07
688	191	138	100	2025-05-28 17:52:07	2025-05-28 17:52:07
689	191	168	88	2025-05-28 17:52:07	2025-05-28 17:52:07
690	168	191	88	2025-05-28 17:52:07	2025-05-28 17:52:07
691	191	189	100	2025-05-28 17:52:07	2025-05-28 17:52:07
692	189	191	55	2025-05-28 17:52:07	2025-05-28 17:52:07
693	191	171	88	2025-05-28 17:52:07	2025-05-28 17:52:07
694	171	191	44	2025-05-28 17:52:07	2025-05-28 17:52:07
696	191	94	100	2025-05-28 17:52:07	2025-05-28 17:52:07
697	191	95	100	2025-05-28 17:52:07	2025-05-28 17:52:07
698	191	96	100	2025-05-28 17:52:07	2025-05-28 17:52:07
699	191	98	100	2025-05-28 17:52:07	2025-05-28 17:52:07
700	191	101	100	2025-05-28 17:52:07	2025-05-28 17:52:07
701	191	103	100	2025-05-28 17:52:07	2025-05-28 17:52:07
702	191	80	88	2025-05-28 17:52:07	2025-05-28 17:52:07
703	191	81	88	2025-05-28 17:52:07	2025-05-28 17:52:07
704	191	82	88	2025-05-28 17:52:07	2025-05-28 17:52:07
705	191	83	88	2025-05-28 17:52:07	2025-05-28 17:52:07
706	191	84	88	2025-05-28 17:52:07	2025-05-28 17:52:07
707	191	87	88	2025-05-28 17:52:07	2025-05-28 17:52:07
708	191	89	88	2025-05-28 17:52:07	2025-05-28 17:52:07
709	191	90	88	2025-05-28 17:52:07	2025-05-28 17:52:07
710	191	91	88	2025-05-28 17:52:07	2025-05-28 17:52:07
711	191	92	88	2025-05-28 17:52:07	2025-05-28 17:52:07
712	191	105	100	2025-05-28 17:52:07	2025-05-28 17:52:07
713	191	106	100	2025-05-28 17:52:07	2025-05-28 17:52:07
714	191	107	100	2025-05-28 17:52:07	2025-05-28 17:52:07
715	191	108	100	2025-05-28 17:52:07	2025-05-28 17:52:07
716	191	109	100	2025-05-28 17:52:07	2025-05-28 17:52:07
717	191	110	100	2025-05-28 17:52:07	2025-05-28 17:52:07
718	191	111	100	2025-05-28 17:52:07	2025-05-28 17:52:07
719	191	112	100	2025-05-28 17:52:07	2025-05-28 17:52:07
720	191	116	100	2025-05-28 17:52:07	2025-05-28 17:52:07
721	191	118	100	2025-05-28 17:52:07	2025-05-28 17:52:07
722	191	121	100	2025-05-28 17:52:07	2025-05-28 17:52:07
723	191	144	100	2025-05-28 17:52:07	2025-05-28 17:52:07
724	191	146	100	2025-05-28 17:52:07	2025-05-28 17:52:07
725	191	150	100	2025-05-28 17:52:07	2025-05-28 17:52:07
726	191	151	100	2025-05-28 17:52:07	2025-05-28 17:52:07
727	191	53	100	2025-05-28 17:52:07	2025-05-28 17:52:07
728	192	54	100	2025-05-28 17:54:29	2025-05-28 17:54:29
729	192	165	100	2025-05-28 17:54:29	2025-05-28 17:54:29
730	192	56	88	2025-05-28 17:54:29	2025-05-28 17:54:29
731	192	58	88	2025-05-28 17:54:29	2025-05-28 17:54:29
732	192	63	88	2025-05-28 17:54:29	2025-05-28 17:54:29
733	192	66	88	2025-05-28 17:54:29	2025-05-28 17:54:29
734	192	67	88	2025-05-28 17:54:29	2025-05-28 17:54:29
735	192	68	88	2025-05-28 17:54:29	2025-05-28 17:54:29
736	192	69	88	2025-05-28 17:54:29	2025-05-28 17:54:29
737	192	70	88	2025-05-28 17:54:29	2025-05-28 17:54:29
738	192	71	88	2025-05-28 17:54:29	2025-05-28 17:54:29
739	192	124	100	2025-05-28 17:54:29	2025-05-28 17:54:29
740	192	125	100	2025-05-28 17:54:29	2025-05-28 17:54:29
741	192	128	100	2025-05-28 17:54:29	2025-05-28 17:54:29
742	192	75	88	2025-05-28 17:54:29	2025-05-28 17:54:29
743	192	76	88	2025-05-28 17:54:29	2025-05-28 17:54:29
744	192	78	88	2025-05-28 17:54:29	2025-05-28 17:54:29
745	192	129	100	2025-05-28 17:54:29	2025-05-28 17:54:29
746	192	50	100	2025-05-28 17:54:29	2025-05-28 17:54:29
747	50	192	44	2025-05-28 17:54:29	2025-05-28 17:54:29
748	192	131	100	2025-05-28 17:54:29	2025-05-28 17:54:29
749	192	133	100	2025-05-28 17:54:29	2025-05-28 17:54:29
750	192	135	100	2025-05-28 17:54:29	2025-05-28 17:54:29
751	192	142	100	2025-05-28 17:54:29	2025-05-28 17:54:29
752	192	177	88	2025-05-28 17:54:29	2025-05-28 17:54:29
753	192	191	100	2025-05-28 17:54:29	2025-05-28 17:54:29
754	191	192	88	2025-05-28 17:54:29	2025-05-28 17:54:29
755	192	97	100	2025-05-28 17:54:29	2025-05-28 17:54:29
756	192	99	100	2025-05-28 17:54:29	2025-05-28 17:54:29
757	192	100	100	2025-05-28 17:54:29	2025-05-28 17:54:29
758	192	102	100	2025-05-28 17:54:29	2025-05-28 17:54:29
759	192	79	88	2025-05-28 17:54:29	2025-05-28 17:54:29
760	192	85	88	2025-05-28 17:54:29	2025-05-28 17:54:29
761	192	86	88	2025-05-28 17:54:29	2025-05-28 17:54:29
762	192	88	88	2025-05-28 17:54:29	2025-05-28 17:54:29
763	192	93	88	2025-05-28 17:54:29	2025-05-28 17:54:29
764	192	104	100	2025-05-28 17:54:29	2025-05-28 17:54:29
765	192	113	100	2025-05-28 17:54:29	2025-05-28 17:54:29
766	192	114	100	2025-05-28 17:54:29	2025-05-28 17:54:29
767	192	115	100	2025-05-28 17:54:29	2025-05-28 17:54:29
768	192	117	100	2025-05-28 17:54:29	2025-05-28 17:54:29
769	192	119	100	2025-05-28 17:54:29	2025-05-28 17:54:29
770	192	120	100	2025-05-28 17:54:29	2025-05-28 17:54:29
771	192	122	100	2025-05-28 17:54:29	2025-05-28 17:54:29
772	192	123	100	2025-05-28 17:54:29	2025-05-28 17:54:29
773	192	145	100	2025-05-28 17:54:29	2025-05-28 17:54:29
774	192	143	100	2025-05-28 17:54:29	2025-05-28 17:54:29
775	192	139	100	2025-05-28 17:54:29	2025-05-28 17:54:29
776	192	140	100	2025-05-28 17:54:29	2025-05-28 17:54:29
777	192	141	100	2025-05-28 17:54:29	2025-05-28 17:54:29
778	192	147	100	2025-05-28 17:54:29	2025-05-28 17:54:29
779	192	148	100	2025-05-28 17:54:29	2025-05-28 17:54:29
780	192	149	100	2025-05-28 17:54:29	2025-05-28 17:54:29
781	192	152	100	2025-05-28 17:54:29	2025-05-28 17:54:29
782	192	153	100	2025-05-28 17:54:29	2025-05-28 17:54:29
783	192	173	88	2025-05-28 17:54:29	2025-05-28 17:54:29
784	173	192	55	2025-05-28 17:54:29	2025-05-28 17:54:29
785	193	54	77	2025-05-29 07:34:14	2025-05-29 07:34:14
786	193	165	77	2025-05-29 07:34:14	2025-05-29 07:34:14
796	193	124	88	2025-05-29 07:34:14	2025-05-29 07:34:14
797	193	125	77	2025-05-29 07:34:14	2025-05-29 07:34:14
798	193	128	88	2025-05-29 07:34:14	2025-05-29 07:34:14
802	193	129	77	2025-05-29 07:34:14	2025-05-29 07:34:14
803	193	50	88	2025-05-29 07:34:14	2025-05-29 07:34:14
804	50	193	44	2025-05-29 07:34:14	2025-05-29 07:34:14
805	193	131	88	2025-05-29 07:34:14	2025-05-29 07:34:14
806	193	133	88	2025-05-29 07:34:14	2025-05-29 07:34:14
807	193	135	77	2025-05-29 07:34:14	2025-05-29 07:34:14
808	193	142	77	2025-05-29 07:34:14	2025-05-29 07:34:14
810	193	191	77	2025-05-29 07:34:14	2025-05-29 07:34:14
811	191	193	88	2025-05-29 07:34:14	2025-05-29 07:34:14
812	193	97	77	2025-05-29 07:34:14	2025-05-29 07:34:14
813	193	99	88	2025-05-29 07:34:14	2025-05-29 07:34:14
814	193	100	77	2025-05-29 07:34:14	2025-05-29 07:34:14
815	193	102	77	2025-05-29 07:34:14	2025-05-29 07:34:14
821	193	104	77	2025-05-29 07:34:14	2025-05-29 07:34:14
822	193	113	77	2025-05-29 07:34:14	2025-05-29 07:34:14
823	193	114	77	2025-05-29 07:34:14	2025-05-29 07:34:14
824	193	115	88	2025-05-29 07:34:14	2025-05-29 07:34:14
825	193	117	77	2025-05-29 07:34:14	2025-05-29 07:34:14
826	193	119	77	2025-05-29 07:34:14	2025-05-29 07:34:14
827	193	120	88	2025-05-29 07:34:14	2025-05-29 07:34:14
828	193	122	88	2025-05-29 07:34:14	2025-05-29 07:34:14
829	193	123	77	2025-05-29 07:34:14	2025-05-29 07:34:14
830	193	145	77	2025-05-29 07:34:14	2025-05-29 07:34:14
831	193	143	88	2025-05-29 07:34:14	2025-05-29 07:34:14
832	193	139	77	2025-05-29 07:34:14	2025-05-29 07:34:14
833	193	140	77	2025-05-29 07:34:14	2025-05-29 07:34:14
834	193	141	88	2025-05-29 07:34:14	2025-05-29 07:34:14
835	193	147	77	2025-05-29 07:34:14	2025-05-29 07:34:14
836	193	148	77	2025-05-29 07:34:14	2025-05-29 07:34:14
837	193	149	77	2025-05-29 07:34:14	2025-05-29 07:34:14
838	193	152	77	2025-05-29 07:34:14	2025-05-29 07:34:14
788	193	58	77	2025-05-29 07:34:14	2025-05-29 07:35:04
789	193	63	66	2025-05-29 07:34:14	2025-05-29 07:35:04
790	193	66	66	2025-05-29 07:34:14	2025-05-29 07:35:04
791	193	67	66	2025-05-29 07:34:14	2025-05-29 07:35:04
792	193	68	66	2025-05-29 07:34:14	2025-05-29 07:35:04
793	193	69	66	2025-05-29 07:34:14	2025-05-29 07:35:04
794	193	70	66	2025-05-29 07:34:14	2025-05-29 07:35:04
795	193	71	66	2025-05-29 07:34:14	2025-05-29 07:35:04
799	193	75	66	2025-05-29 07:34:14	2025-05-29 07:35:04
801	193	78	77	2025-05-29 07:34:14	2025-05-29 07:35:04
809	193	177	66	2025-05-29 07:34:14	2025-05-29 07:35:04
816	193	79	66	2025-05-29 07:34:14	2025-05-29 07:35:04
817	193	85	77	2025-05-29 07:34:14	2025-05-29 07:35:04
818	193	86	77	2025-05-29 07:34:14	2025-05-29 07:35:04
819	193	88	77	2025-05-29 07:34:14	2025-05-29 07:35:04
820	193	93	66	2025-05-29 07:34:14	2025-05-29 07:35:04
839	193	153	77	2025-05-29 07:34:14	2025-05-29 07:34:14
841	173	193	55	2025-05-29 07:34:14	2025-05-29 07:34:14
787	193	56	66	2025-05-29 07:34:14	2025-05-29 07:35:04
800	193	76	66	2025-05-29 07:34:14	2025-05-29 07:35:04
840	193	173	66	2025-05-29 07:34:14	2025-05-29 07:35:04
843	174	194	44	2025-05-29 08:26:09	2025-05-29 08:26:09
844	194	181	66	2025-05-29 08:26:09	2025-05-29 08:26:09
845	194	193	55	2025-05-29 08:26:09	2025-05-29 08:26:09
846	193	194	66	2025-05-29 08:26:09	2025-05-29 08:26:09
857	194	126	55	2025-05-29 08:26:09	2025-05-29 08:26:09
858	194	127	55	2025-05-29 08:26:09	2025-05-29 08:26:09
859	194	166	66	2025-05-29 08:26:09	2025-05-29 08:26:09
860	194	74	55	2025-05-29 08:26:09	2025-05-29 08:26:09
861	194	77	55	2025-05-29 08:26:09	2025-05-29 08:26:09
862	194	130	66	2025-05-29 08:26:09	2025-05-29 08:26:09
864	194	132	55	2025-05-29 08:26:09	2025-05-29 08:26:09
865	194	134	66	2025-05-29 08:26:09	2025-05-29 08:26:09
866	194	136	55	2025-05-29 08:26:09	2025-05-29 08:26:09
867	194	137	66	2025-05-29 08:26:09	2025-05-29 08:26:09
868	194	138	77	2025-05-29 08:26:09	2025-05-29 08:26:09
870	168	194	88	2025-05-29 08:26:09	2025-05-29 08:26:09
871	194	189	55	2025-05-29 08:26:09	2025-05-29 08:26:09
872	189	194	55	2025-05-29 08:26:09	2025-05-29 08:26:09
874	171	194	44	2025-05-29 08:26:09	2025-05-29 08:26:09
876	194	94	55	2025-05-29 08:26:09	2025-05-29 08:26:09
877	194	95	55	2025-05-29 08:26:09	2025-05-29 08:26:09
878	194	96	55	2025-05-29 08:26:09	2025-05-29 08:26:09
879	194	98	66	2025-05-29 08:26:09	2025-05-29 08:26:09
880	194	101	55	2025-05-29 08:26:09	2025-05-29 08:26:09
881	194	103	55	2025-05-29 08:26:09	2025-05-29 08:26:09
882	194	80	55	2025-05-29 08:26:10	2025-05-29 08:26:10
883	194	81	66	2025-05-29 08:26:10	2025-05-29 08:26:10
884	194	82	55	2025-05-29 08:26:10	2025-05-29 08:26:10
885	194	83	55	2025-05-29 08:26:10	2025-05-29 08:26:10
886	194	84	55	2025-05-29 08:26:10	2025-05-29 08:26:10
887	194	87	55	2025-05-29 08:26:10	2025-05-29 08:26:10
888	194	89	55	2025-05-29 08:26:10	2025-05-29 08:26:10
889	194	90	66	2025-05-29 08:26:10	2025-05-29 08:26:10
890	194	91	55	2025-05-29 08:26:10	2025-05-29 08:26:10
891	194	92	55	2025-05-29 08:26:10	2025-05-29 08:26:10
892	194	105	55	2025-05-29 08:26:10	2025-05-29 08:26:10
893	194	106	77	2025-05-29 08:26:10	2025-05-29 08:26:10
894	194	107	55	2025-05-29 08:26:10	2025-05-29 08:26:10
895	194	108	55	2025-05-29 08:26:10	2025-05-29 08:26:10
896	194	109	66	2025-05-29 08:26:10	2025-05-29 08:26:10
897	194	110	55	2025-05-29 08:26:10	2025-05-29 08:26:10
898	194	111	55	2025-05-29 08:26:10	2025-05-29 08:26:10
899	194	112	55	2025-05-29 08:26:10	2025-05-29 08:26:10
900	194	116	55	2025-05-29 08:26:10	2025-05-29 08:26:10
901	194	118	55	2025-05-29 08:26:10	2025-05-29 08:26:10
902	194	121	66	2025-05-29 08:26:10	2025-05-29 08:26:10
903	194	144	55	2025-05-29 08:26:10	2025-05-29 08:26:10
904	194	146	55	2025-05-29 08:26:10	2025-05-29 08:26:10
905	194	150	55	2025-05-29 08:26:10	2025-05-29 08:26:10
906	194	151	55	2025-05-29 08:26:10	2025-05-29 08:26:10
907	194	53	66	2025-05-29 08:26:10	2025-05-29 08:26:10
908	194	192	55	2025-05-29 08:26:10	2025-05-29 08:26:10
909	192	194	88	2025-05-29 08:26:10	2025-05-29 08:26:10
842	194	174	55	2025-05-29 08:26:09	2025-05-29 08:26:32
847	194	55	44	2025-05-29 08:26:09	2025-05-29 08:26:32
848	194	57	44	2025-05-29 08:26:09	2025-05-29 08:26:32
849	194	59	44	2025-05-29 08:26:09	2025-05-29 08:26:32
850	194	60	44	2025-05-29 08:26:09	2025-05-29 08:26:32
851	194	61	44	2025-05-29 08:26:09	2025-05-29 08:26:32
852	194	62	44	2025-05-29 08:26:09	2025-05-29 08:26:32
853	194	64	44	2025-05-29 08:26:09	2025-05-29 08:26:32
854	194	65	44	2025-05-29 08:26:09	2025-05-29 08:26:32
855	194	72	44	2025-05-29 08:26:09	2025-05-29 08:26:32
856	194	73	44	2025-05-29 08:26:09	2025-05-29 08:26:32
863	194	176	55	2025-05-29 08:26:09	2025-05-29 08:26:32
869	194	168	44	2025-05-29 08:26:09	2025-05-29 08:26:32
873	194	171	55	2025-05-29 08:26:09	2025-05-29 08:26:32
911	174	195	44	2025-05-29 08:29:33	2025-05-29 08:29:33
912	195	181	55	2025-05-29 08:29:33	2025-05-29 08:29:33
913	195	193	55	2025-05-29 08:29:33	2025-05-29 08:29:33
914	193	195	66	2025-05-29 08:29:33	2025-05-29 08:29:33
915	195	55	44	2025-05-29 08:29:33	2025-05-29 08:29:33
916	195	57	44	2025-05-29 08:29:33	2025-05-29 08:29:33
917	195	59	44	2025-05-29 08:29:33	2025-05-29 08:29:33
918	195	60	44	2025-05-29 08:29:33	2025-05-29 08:29:33
919	195	61	44	2025-05-29 08:29:33	2025-05-29 08:29:33
920	195	62	44	2025-05-29 08:29:33	2025-05-29 08:29:33
922	195	65	44	2025-05-29 08:29:33	2025-05-29 08:29:33
923	195	72	44	2025-05-29 08:29:34	2025-05-29 08:29:34
925	195	126	44	2025-05-29 08:29:34	2025-05-29 08:29:34
926	195	127	44	2025-05-29 08:29:34	2025-05-29 08:29:34
927	195	166	55	2025-05-29 08:29:34	2025-05-29 08:29:34
929	195	77	44	2025-05-29 08:29:34	2025-05-29 08:29:34
930	195	130	55	2025-05-29 08:29:34	2025-05-29 08:29:34
932	195	132	55	2025-05-29 08:29:34	2025-05-29 08:29:34
933	195	134	44	2025-05-29 08:29:34	2025-05-29 08:29:34
934	195	136	55	2025-05-29 08:29:34	2025-05-29 08:29:34
935	195	137	55	2025-05-29 08:29:34	2025-05-29 08:29:34
936	195	138	55	2025-05-29 08:29:34	2025-05-29 08:29:34
937	195	168	44	2025-05-29 08:29:34	2025-05-29 08:29:34
938	168	195	88	2025-05-29 08:29:34	2025-05-29 08:29:34
939	195	189	44	2025-05-29 08:29:34	2025-05-29 08:29:34
940	189	195	55	2025-05-29 08:29:34	2025-05-29 08:29:34
942	171	195	44	2025-05-29 08:29:34	2025-05-29 08:29:34
921	195	64	44	2025-05-29 08:29:33	2025-05-29 08:30:08
924	195	73	44	2025-05-29 08:29:34	2025-05-29 08:30:08
928	195	74	44	2025-05-29 08:29:34	2025-05-29 08:30:08
931	195	176	55	2025-05-29 08:29:34	2025-05-29 08:30:08
941	195	171	44	2025-05-29 08:29:34	2025-05-29 08:30:08
875	194	179	44	2025-05-29 08:26:09	2025-05-29 18:10:55
943	195	179	66	2025-05-29 08:29:34	2025-05-29 08:29:34
944	195	94	44	2025-05-29 08:29:34	2025-05-29 08:29:34
945	195	95	55	2025-05-29 08:29:34	2025-05-29 08:29:34
946	195	96	44	2025-05-29 08:29:34	2025-05-29 08:29:34
947	195	98	66	2025-05-29 08:29:34	2025-05-29 08:29:34
948	195	101	44	2025-05-29 08:29:34	2025-05-29 08:29:34
949	195	103	44	2025-05-29 08:29:34	2025-05-29 08:29:34
950	195	80	44	2025-05-29 08:29:34	2025-05-29 08:29:34
951	195	81	44	2025-05-29 08:29:34	2025-05-29 08:29:34
952	195	82	44	2025-05-29 08:29:34	2025-05-29 08:29:34
954	195	84	44	2025-05-29 08:29:34	2025-05-29 08:29:34
955	195	87	44	2025-05-29 08:29:34	2025-05-29 08:29:34
956	195	89	44	2025-05-29 08:29:34	2025-05-29 08:29:34
957	195	90	44	2025-05-29 08:29:34	2025-05-29 08:29:34
958	195	91	44	2025-05-29 08:29:34	2025-05-29 08:29:34
959	195	92	44	2025-05-29 08:29:34	2025-05-29 08:29:34
960	195	105	44	2025-05-29 08:29:34	2025-05-29 08:29:34
961	195	106	55	2025-05-29 08:29:34	2025-05-29 08:29:34
962	195	107	44	2025-05-29 08:29:34	2025-05-29 08:29:34
963	195	108	44	2025-05-29 08:29:34	2025-05-29 08:29:34
964	195	109	55	2025-05-29 08:29:34	2025-05-29 08:29:34
965	195	110	44	2025-05-29 08:29:34	2025-05-29 08:29:34
966	195	111	44	2025-05-29 08:29:34	2025-05-29 08:29:34
967	195	112	44	2025-05-29 08:29:34	2025-05-29 08:29:34
968	195	116	55	2025-05-29 08:29:34	2025-05-29 08:29:34
969	195	118	44	2025-05-29 08:29:34	2025-05-29 08:29:34
970	195	121	44	2025-05-29 08:29:34	2025-05-29 08:29:34
971	195	144	44	2025-05-29 08:29:34	2025-05-29 08:29:34
972	195	146	44	2025-05-29 08:29:34	2025-05-29 08:29:34
973	195	150	55	2025-05-29 08:29:34	2025-05-29 08:29:34
974	195	151	44	2025-05-29 08:29:34	2025-05-29 08:29:34
975	195	53	55	2025-05-29 08:29:34	2025-05-29 08:29:34
976	195	192	44	2025-05-29 08:29:34	2025-05-29 08:29:34
977	192	195	88	2025-05-29 08:29:34	2025-05-29 08:29:34
910	195	174	44	2025-05-29 08:29:33	2025-05-29 08:30:08
953	195	83	44	2025-05-29 08:29:34	2025-05-29 08:30:08
979	174	196	44	2025-05-29 08:40:59	2025-05-29 08:40:59
980	196	181	88	2025-05-29 08:40:59	2025-05-29 08:40:59
981	196	193	88	2025-05-29 08:40:59	2025-05-29 08:40:59
982	193	196	66	2025-05-29 08:40:59	2025-05-29 08:40:59
993	196	126	77	2025-05-29 08:40:59	2025-05-29 08:40:59
994	196	127	77	2025-05-29 08:40:59	2025-05-29 08:40:59
995	196	166	88	2025-05-29 08:40:59	2025-05-29 08:40:59
998	196	130	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1000	196	132	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1001	196	134	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1002	196	136	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1003	196	137	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1004	196	138	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1006	168	196	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1007	196	189	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1008	189	196	55	2025-05-29 08:40:59	2025-05-29 08:40:59
1010	171	196	44	2025-05-29 08:40:59	2025-05-29 08:40:59
1012	196	94	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1013	196	95	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1014	196	96	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1015	196	98	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1016	196	101	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1017	196	103	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1028	196	105	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1029	196	106	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1030	196	107	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1031	196	108	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1032	196	109	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1033	196	110	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1034	196	111	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1035	196	112	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1036	196	116	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1037	196	118	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1038	196	121	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1039	196	144	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1040	196	146	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1041	196	150	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1042	196	151	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1043	196	53	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1044	196	192	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1045	192	196	88	2025-05-29 08:40:59	2025-05-29 08:40:59
978	196	174	77	2025-05-29 08:40:59	2025-05-29 08:41:14
983	196	55	77	2025-05-29 08:40:59	2025-05-29 08:41:14
984	196	57	66	2025-05-29 08:40:59	2025-05-29 08:41:14
985	196	59	66	2025-05-29 08:40:59	2025-05-29 08:41:14
986	196	60	66	2025-05-29 08:40:59	2025-05-29 08:41:14
987	196	61	66	2025-05-29 08:40:59	2025-05-29 08:41:14
988	196	62	66	2025-05-29 08:40:59	2025-05-29 08:41:14
989	196	64	77	2025-05-29 08:40:59	2025-05-29 08:41:14
990	196	65	66	2025-05-29 08:40:59	2025-05-29 08:41:14
991	196	72	66	2025-05-29 08:40:59	2025-05-29 08:41:14
992	196	73	77	2025-05-29 08:40:59	2025-05-29 08:41:14
996	196	74	66	2025-05-29 08:40:59	2025-05-29 08:41:14
997	196	77	66	2025-05-29 08:40:59	2025-05-29 08:41:14
999	196	176	77	2025-05-29 08:40:59	2025-05-29 08:41:14
1005	196	168	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1009	196	171	77	2025-05-29 08:40:59	2025-05-29 08:41:14
1018	196	80	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1019	196	81	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1020	196	82	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1021	196	83	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1022	196	84	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1023	196	87	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1024	196	89	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1025	196	90	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1026	196	91	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1027	196	92	77	2025-05-29 08:40:59	2025-05-29 08:41:14
1046	197	174	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1047	174	197	44	2025-05-29 17:27:21	2025-05-29 17:27:21
1048	197	181	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1049	197	193	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1050	193	197	66	2025-05-29 17:27:21	2025-05-29 17:27:21
1051	197	55	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1052	197	57	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1053	197	59	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1054	197	60	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1055	197	61	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1056	197	62	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1057	197	64	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1058	197	65	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1059	197	72	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1060	197	73	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1061	197	126	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1062	197	127	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1063	197	166	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1064	197	74	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1065	197	77	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1066	197	130	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1067	197	176	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1068	197	132	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1069	197	134	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1070	197	136	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1071	197	137	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1072	197	138	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1073	197	168	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1074	168	197	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1075	197	189	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1076	189	197	55	2025-05-29 17:27:21	2025-05-29 17:27:21
1077	197	171	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1078	171	197	44	2025-05-29 17:27:21	2025-05-29 17:27:21
1080	197	94	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1081	197	95	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1082	197	96	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1083	197	98	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1084	197	101	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1085	197	103	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1086	197	80	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1087	197	81	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1088	197	82	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1089	197	83	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1090	197	84	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1091	197	87	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1092	197	89	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1093	197	90	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1094	197	91	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1095	197	92	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1096	197	105	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1097	197	106	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1098	197	107	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1099	197	108	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1100	197	109	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1101	197	110	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1102	197	111	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1103	197	112	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1104	197	116	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1105	197	118	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1106	197	121	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1107	197	144	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1108	197	146	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1109	197	150	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1110	197	151	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1111	197	53	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1112	197	192	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1113	192	197	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1114	179	197	44	2025-05-29 18:10:55	2025-05-29 18:10:55
1079	197	179	88	2025-05-29 17:27:21	2025-05-29 18:10:55
1115	179	194	44	2025-05-29 18:10:55	2025-05-29 18:10:55
1116	179	195	66	2025-05-29 18:10:55	2025-05-29 18:10:55
1117	179	191	44	2025-05-29 18:10:55	2025-05-29 18:10:55
695	191	179	88	2025-05-28 17:52:07	2025-05-29 18:10:55
1118	179	196	66	2025-05-29 18:10:55	2025-05-29 18:10:55
1011	196	179	66	2025-05-29 08:40:59	2025-05-29 18:10:55
1120	174	200	44	2025-05-30 11:28:50	2025-05-30 11:28:50
1124	200	55	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1125	200	57	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1126	200	59	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1127	200	60	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1128	200	61	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1129	61	200	44	2025-05-30 11:28:50	2025-05-30 11:28:50
1130	200	62	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1131	200	64	66	2025-05-30 11:28:50	2025-05-30 11:28:50
1132	200	65	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1133	200	72	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1134	200	73	66	2025-05-30 11:28:50	2025-05-30 11:28:50
1135	73	200	44	2025-05-30 11:28:50	2025-05-30 11:28:50
1136	200	126	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1137	126	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1138	200	127	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1139	127	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1140	200	166	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1141	200	74	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1142	74	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1143	200	77	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1144	77	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1145	200	130	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1146	130	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1148	200	132	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1149	132	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1150	200	134	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1151	134	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1152	200	136	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1121	200	181	66	2025-05-30 11:28:50	2025-05-30 11:29:50
1122	200	193	55	2025-05-30 11:28:50	2025-05-30 11:29:50
1123	193	200	66	2025-05-30 11:28:50	2025-05-30 11:29:50
1147	200	176	66	2025-05-30 11:28:51	2025-05-30 11:29:50
1153	200	137	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1154	137	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1155	200	138	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1156	138	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1157	200	168	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1158	168	200	88	2025-05-30 11:28:51	2025-05-30 11:28:51
1161	171	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1163	179	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1164	200	94	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1165	94	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1166	200	95	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1167	200	96	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1168	96	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1169	200	98	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1170	98	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1171	200	101	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1172	200	103	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1173	200	80	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1174	200	81	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1175	200	82	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1176	82	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1177	200	83	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1178	83	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1179	200	84	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1180	84	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1181	200	87	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1182	200	89	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1183	200	90	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1184	90	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1185	200	91	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1186	91	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1187	200	92	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1188	200	105	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1189	200	106	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1190	200	107	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1191	200	108	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1192	108	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1193	200	109	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1194	200	110	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1195	200	111	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1196	200	112	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1197	112	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1198	200	116	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1199	200	118	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1200	200	121	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1201	200	144	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1202	144	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1203	200	146	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1204	200	150	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1205	150	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1206	200	151	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1207	200	53	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1119	200	174	44	2025-05-30 11:28:50	2025-05-30 11:29:50
1210	176	200	44	2025-05-30 11:29:50	2025-05-30 11:29:50
1159	200	189	55	2025-05-30 11:28:51	2025-05-30 11:29:50
1211	189	200	55	2025-05-30 11:29:50	2025-05-30 11:29:50
1160	200	171	44	2025-05-30 11:28:51	2025-05-30 11:29:50
1162	200	179	55	2025-05-30 11:28:51	2025-05-30 11:29:50
1208	200	192	44	2025-05-30 11:28:51	2025-05-30 11:29:50
1209	192	200	88	2025-05-30 11:28:51	2025-05-30 11:29:50
1213	174	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1217	202	55	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1218	202	57	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1219	202	59	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1220	202	60	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1221	202	61	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1222	61	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1223	202	62	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1225	202	65	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1226	202	72	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1228	73	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1229	202	126	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1230	126	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1231	202	127	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1232	127	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1233	202	166	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1235	74	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1236	202	77	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1237	77	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1239	130	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1242	132	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1243	202	134	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1244	134	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1245	202	136	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1247	137	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1249	138	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1250	202	168	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1251	168	202	88	2025-05-30 12:33:43	2025-05-30 12:33:43
1254	171	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1256	179	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1257	202	94	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1258	94	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1214	202	181	77	2025-05-30 12:33:43	2025-05-30 12:33:54
1215	202	193	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1216	193	202	66	2025-05-30 12:33:43	2025-05-30 12:33:54
1224	202	64	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1234	202	74	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1238	202	130	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1240	202	176	77	2025-05-30 12:33:43	2025-05-30 12:33:54
1241	202	132	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1246	202	137	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1248	202	138	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1252	202	189	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1253	202	171	55	2025-05-30 12:33:43	2025-05-30 12:33:54
1255	202	179	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1260	202	96	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1261	96	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1263	98	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1264	202	101	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1265	202	103	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1266	202	80	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1267	202	81	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1268	202	82	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1269	82	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1270	202	83	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1271	83	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1272	202	84	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1273	84	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1274	202	87	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1275	202	89	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1276	202	90	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1277	90	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1278	202	91	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1279	91	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1280	202	92	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1281	202	105	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1283	202	107	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1284	202	108	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1285	108	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1287	202	110	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1288	202	111	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1289	202	112	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1290	112	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1292	202	118	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1293	202	121	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1295	144	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1298	150	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1300	202	53	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1301	202	192	55	2025-05-30 12:33:44	2025-05-30 12:33:44
1212	202	174	55	2025-05-30 12:33:43	2025-05-30 12:33:54
1227	202	73	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1303	176	202	44	2025-05-30 12:33:54	2025-05-30 12:33:54
1304	189	202	55	2025-05-30 12:33:54	2025-05-30 12:33:54
1259	202	95	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1262	202	98	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1282	202	106	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1286	202	109	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1291	202	116	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1294	202	144	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1296	202	146	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1297	202	150	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1299	202	151	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1302	192	202	88	2025-05-30 12:33:44	2025-05-30 12:33:54
1305	204	174	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1306	174	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1307	204	181	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1308	204	193	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1309	193	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1310	204	55	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1311	204	57	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1312	204	59	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1313	204	60	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1314	204	61	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1315	61	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1316	204	62	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1317	204	64	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1318	204	65	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1319	204	72	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1320	204	73	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1321	73	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1322	204	126	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1323	126	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1324	204	127	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1325	127	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1326	204	166	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1327	204	74	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1328	74	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1329	204	77	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1330	77	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1331	204	130	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1332	130	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1333	204	176	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1334	204	132	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1335	132	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1336	204	134	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1337	134	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1338	204	136	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1339	204	137	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1340	137	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1341	204	138	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1342	138	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1343	204	168	88	2025-05-31 06:16:32	2025-05-31 06:16:32
1344	168	204	88	2025-05-31 06:16:32	2025-05-31 06:16:32
1345	204	189	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1346	204	171	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1347	171	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1348	204	179	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1349	179	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1350	204	94	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1351	94	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1352	204	95	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1353	204	96	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1354	96	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1355	204	98	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1356	98	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1357	204	101	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1358	204	103	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1359	204	80	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1360	204	81	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1361	204	82	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1362	82	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1363	204	83	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1364	83	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1365	204	84	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1366	84	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1367	204	87	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1368	204	89	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1369	204	90	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1370	90	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1371	204	91	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1372	91	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1373	204	92	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1374	204	105	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1375	204	106	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1376	204	107	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1377	204	108	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1378	108	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1379	204	109	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1380	204	110	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1381	204	111	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1382	204	112	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1383	112	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1384	204	116	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1385	204	118	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1386	204	121	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1387	204	144	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1388	144	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1389	204	146	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1390	204	150	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1391	150	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1392	204	151	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1393	204	53	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1394	204	192	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1395	192	204	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1396	51	54	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1397	51	165	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1398	51	197	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1399	197	51	88	2025-05-31 06:25:19	2025-05-31 06:25:19
1400	51	204	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1401	204	51	88	2025-05-31 06:25:19	2025-05-31 06:25:19
1402	51	56	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1403	51	58	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1404	58	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1405	51	63	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1406	63	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1407	51	66	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1408	51	67	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1409	51	68	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1410	68	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1411	51	69	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1412	69	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1413	51	70	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1414	70	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1415	51	71	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1416	51	124	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1417	51	125	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1418	51	128	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1419	128	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1420	51	75	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1421	75	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1422	51	76	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1423	76	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1424	51	78	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1425	51	129	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1426	51	200	88	2025-05-31 06:25:19	2025-05-31 06:25:19
1427	51	50	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1428	51	194	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1429	51	131	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1430	51	133	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1431	51	135	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1432	135	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1433	51	142	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1434	51	177	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1435	51	195	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1436	51	202	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1437	51	191	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1438	191	51	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1439	51	196	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1440	196	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1441	51	97	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1442	97	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1443	51	99	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1444	99	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1445	51	100	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1446	51	102	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1447	51	79	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1448	51	85	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1449	51	86	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1450	86	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1451	51	88	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1452	51	93	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1453	51	104	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1454	51	113	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1455	113	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1456	51	114	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1457	51	115	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1458	51	117	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1459	51	119	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1460	119	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1461	51	120	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1462	120	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1463	51	122	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1464	51	123	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1465	123	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1466	51	145	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1467	145	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1468	51	143	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1469	143	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1470	51	139	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1471	51	140	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1472	140	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1473	51	141	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1474	141	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1475	51	147	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1476	147	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1477	51	148	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1478	51	149	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1479	51	152	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1480	51	153	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1481	51	173	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1482	173	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1483	209	174	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1484	174	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1485	209	181	77	2025-05-31 09:09:46	2025-05-31 09:09:46
1486	209	193	100	2025-05-31 09:09:46	2025-05-31 09:09:46
1487	193	209	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1488	209	55	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1489	209	57	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1490	209	59	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1491	209	60	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1492	209	61	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1493	61	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1494	209	62	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1495	209	64	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1496	209	65	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1497	209	72	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1498	209	73	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1499	73	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1500	209	126	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1501	126	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1502	209	127	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1503	127	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1504	209	166	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1505	209	74	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1506	74	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1507	209	77	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1508	77	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1509	209	130	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1510	130	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1511	209	51	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1512	51	209	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1513	209	176	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1514	209	132	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1515	132	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1516	209	134	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1517	134	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1518	209	136	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1519	209	137	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1520	137	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1521	209	138	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1522	138	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1523	209	168	77	2025-05-31 09:09:46	2025-05-31 09:09:46
1524	168	209	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1525	209	189	100	2025-05-31 09:09:46	2025-05-31 09:09:46
1526	189	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1527	209	171	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1528	171	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1529	209	179	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1530	179	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1531	209	94	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1532	94	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1533	209	95	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1534	209	96	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1535	96	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1536	209	98	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1537	98	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1538	209	101	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1539	209	103	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1540	209	80	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1541	209	81	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1542	209	82	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1543	82	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1544	209	83	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1545	83	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1546	209	84	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1547	84	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1548	209	87	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1549	209	89	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1550	209	90	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1551	90	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1552	209	91	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1553	91	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1554	209	92	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1555	209	105	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1556	209	106	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1557	209	107	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1558	209	108	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1559	108	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1560	209	109	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1561	209	110	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1562	209	111	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1563	209	112	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1564	112	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1565	209	116	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1566	209	118	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1567	209	121	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1568	209	144	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1569	144	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1570	209	146	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1571	209	150	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1572	150	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1573	209	151	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1574	209	53	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1575	209	192	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1576	192	209	77	2025-05-31 09:09:46	2025-05-31 09:09:46
1606	51	210	88	2025-05-31 15:04:08	2025-05-31 15:04:08
1673	197	211	88	2025-05-31 16:48:23	2025-05-31 16:48:23
1675	204	211	88	2025-05-31 16:48:23	2025-05-31 16:48:23
1678	58	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1680	63	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1676	211	56	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1681	211	66	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1672	211	197	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1674	211	204	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1670	211	54	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1677	211	58	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1679	211	63	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1682	211	67	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1683	211	68	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1586	210	61	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1588	210	62	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1669	192	210	77	2025-05-31 15:04:08	2025-06-06 13:29:37
1587	61	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1593	73	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1595	126	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1597	127	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1600	74	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1602	77	210	66	2025-05-31 15:04:08	2025-06-06 13:16:20
1604	130	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1609	132	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1611	134	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1614	137	210	66	2025-05-31 15:04:08	2025-06-06 13:16:20
1616	138	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1618	168	210	100	2025-05-31 15:04:08	2025-06-06 13:16:21
1634	210	81	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1621	171	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1625	94	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1628	96	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1630	98	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1636	82	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
1638	83	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1640	84	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1644	90	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1646	91	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1652	108	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
1657	112	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
1662	144	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1665	150	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1584	210	59	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1585	210	60	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1598	210	166	77	2025-05-31 15:04:08	2025-06-06 13:40:53
1610	210	134	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1617	210	168	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1626	210	95	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1624	210	94	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1627	210	96	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1631	210	101	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1632	210	103	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1635	210	82	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1637	210	83	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1639	210	84	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1641	210	87	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1642	210	89	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1656	210	112	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1658	210	116	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1660	210	121	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1661	210	144	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1663	210	146	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1664	210	150	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1666	210	151	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1668	210	192	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1577	210	174	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1583	210	57	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1589	210	64	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1581	193	210	66	2025-05-31 15:04:08	2025-06-06 13:40:53
1590	210	65	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1591	210	72	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1592	210	73	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1594	210	126	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1596	210	127	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1599	210	74	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1601	210	77	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1603	210	130	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1605	210	51	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1613	210	137	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1612	210	136	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1619	210	189	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1615	210	138	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1622	210	179	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1629	210	98	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1633	210	80	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1643	210	90	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1645	210	91	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1647	210	92	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1648	210	105	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1649	210	106	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1650	210	107	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1651	210	108	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1653	210	109	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1654	210	110	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1655	210	111	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1579	210	181	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1580	210	193	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1667	210	53	77	2025-05-31 15:04:08	2025-06-06 13:40:53
1582	210	55	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1607	210	176	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1684	68	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1686	69	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1688	70	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1693	128	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1695	75	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1697	76	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1706	135	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1720	97	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1722	99	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1728	86	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1733	113	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1738	119	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1740	120	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1743	123	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1745	145	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1747	143	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1750	140	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1752	141	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1754	147	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1760	173	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1761	212	174	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1762	174	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1763	212	181	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1764	212	193	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1765	193	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1766	212	55	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1767	212	57	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1768	212	59	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1769	212	60	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1770	212	61	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1771	61	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1772	212	62	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1773	212	64	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1774	212	65	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1775	212	72	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1776	212	73	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1777	73	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1778	212	126	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1779	126	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1780	212	127	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1781	127	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1782	212	166	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1783	212	74	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1784	74	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1785	212	77	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1786	77	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1787	212	130	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1788	130	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1789	212	51	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1790	51	212	88	2025-06-01 17:27:33	2025-06-01 17:27:33
1710	211	202	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1709	211	195	77	2025-05-31 16:48:23	2025-06-05 07:58:35
1718	210	211	88	2025-05-31 16:48:23	2025-06-06 14:13:35
1721	211	99	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1746	211	143	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1691	211	125	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1734	211	114	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1723	211	100	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1725	211	79	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1715	211	196	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1719	211	97	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1748	211	139	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1739	211	120	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1685	211	69	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1751	211	141	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1759	211	173	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1712	209	211	77	2025-05-31 16:48:23	2025-06-03 15:34:13
1701	211	50	88	2025-05-31 16:48:23	2025-06-05 07:58:35
1705	211	135	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1704	211	133	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1753	211	147	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1703	211	131	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1713	211	191	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1694	211	75	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1714	191	211	77	2025-05-31 16:48:23	2025-06-05 07:40:43
1707	211	142	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1711	211	209	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1724	211	102	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1726	211	85	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1732	211	113	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1749	211	140	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1735	211	115	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1736	211	117	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1758	211	153	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1741	211	122	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1742	211	123	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1744	211	145	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1702	211	194	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1755	211	148	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1756	211	149	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1757	211	152	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1716	196	211	44	2025-05-31 16:48:23	2025-06-03 15:34:13
1737	211	119	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1687	211	70	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1689	211	71	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1690	211	124	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1696	211	76	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1698	211	78	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1699	211	129	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1727	211	86	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1729	211	88	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1730	211	93	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1717	211	210	66	2025-05-31 16:48:23	2025-06-06 13:16:21
1791	212	176	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1792	212	132	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1793	132	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1794	212	134	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1795	134	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1796	212	136	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1797	212	137	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1798	137	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1799	212	138	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1800	138	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1801	212	168	88	2025-06-01 17:27:33	2025-06-01 17:27:33
1802	168	212	88	2025-06-01 17:27:33	2025-06-01 17:27:33
1803	212	189	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1804	212	171	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1805	171	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1806	212	179	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1807	179	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1808	212	94	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1809	94	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1810	212	95	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1811	212	96	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1812	96	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1813	212	98	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1814	98	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1815	212	101	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1816	212	103	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1817	212	80	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1818	212	81	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1819	212	82	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1820	82	212	55	2025-06-01 17:27:34	2025-06-01 17:27:34
1821	212	83	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1822	83	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1823	212	84	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1824	84	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1825	212	87	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1826	212	89	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1827	212	90	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1828	90	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1829	212	91	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1830	91	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1831	212	92	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1832	212	105	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1833	212	106	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1834	212	107	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1835	212	108	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1836	108	212	55	2025-06-01 17:27:34	2025-06-01 17:27:34
1837	212	109	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1838	212	110	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1839	212	111	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1840	212	112	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1841	112	212	55	2025-06-01 17:27:34	2025-06-01 17:27:34
1842	212	116	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1843	212	118	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1844	212	121	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1845	212	144	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1846	144	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1847	212	146	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1848	212	150	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1849	150	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1850	212	151	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1851	212	53	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1852	212	192	100	2025-06-01 17:27:34	2025-06-01 17:27:34
1853	192	212	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1857	214	165	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1858	214	197	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1859	197	214	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1860	214	204	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1861	204	214	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1862	214	212	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1863	212	214	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1864	214	56	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1865	214	58	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1866	58	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1868	63	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1869	214	66	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1870	214	67	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1871	214	68	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1872	68	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1873	214	69	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1874	69	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1875	214	70	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1876	70	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1877	214	71	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1880	214	128	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1881	128	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1882	214	75	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1883	75	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1884	214	76	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1885	76	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1886	214	78	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1887	214	129	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1888	214	200	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1890	214	194	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1892	214	133	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1894	135	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1854	212	211	88	2025-06-01 17:27:34	2025-06-03 15:15:01
1856	214	54	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1867	214	63	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1878	214	124	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1879	214	125	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1889	214	50	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1891	214	131	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1893	214	135	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1895	214	142	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1897	214	195	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1898	214	202	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1899	214	209	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1900	209	214	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1901	214	191	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1903	214	196	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1904	196	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1905	214	210	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1907	214	97	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1908	97	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1910	99	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1914	214	85	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1915	214	86	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1916	86	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1917	214	88	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1918	214	93	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1920	214	113	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1921	113	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1922	214	114	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1925	214	119	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1926	119	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1927	214	120	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1928	120	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1930	214	123	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1931	123	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1933	145	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1934	214	143	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1935	143	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1937	214	140	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1938	140	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1940	141	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1941	214	147	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1942	147	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1944	214	149	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1947	214	173	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1948	173	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1950	174	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1959	61	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1965	73	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1967	126	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1969	127	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1972	74	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1974	77	215	55	2025-06-03 05:39:44	2025-06-03 05:39:44
1976	130	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1977	215	51	66	2025-06-03 05:39:44	2025-06-03 05:39:44
1978	51	215	88	2025-06-03 05:39:44	2025-06-03 05:39:44
1980	214	215	88	2025-06-03 05:39:44	2025-06-03 05:39:44
1983	132	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1985	134	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1988	137	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
1990	138	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
1991	215	168	66	2025-06-03 05:39:45	2025-06-03 05:39:45
1992	168	215	88	2025-06-03 05:39:45	2025-06-03 05:39:45
1995	171	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
1997	179	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
1999	94	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2002	96	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2004	98	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
1955	215	57	44	2025-06-03 05:39:44	2025-06-04 09:13:31
1952	215	193	44	2025-06-03 05:39:44	2025-06-03 05:40:06
1953	193	215	66	2025-06-03 05:39:44	2025-06-03 05:40:06
1970	215	166	44	2025-06-03 05:39:44	2025-06-03 05:40:06
1982	215	132	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1998	215	94	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2003	215	98	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1996	215	179	44	2025-06-03 05:39:45	2025-06-03 05:40:06
1902	191	214	77	2025-06-03 03:26:41	2025-06-04 04:18:02
1911	214	100	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1912	214	102	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1913	214	79	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1919	214	104	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1923	214	115	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1924	214	117	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1929	214	122	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1932	214	145	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1936	214	139	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1939	214	141	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1943	214	148	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1945	214	152	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1946	214	153	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1954	215	55	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1975	215	130	44	2025-06-03 05:39:44	2025-06-04 09:13:31
1956	215	59	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1957	215	60	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1958	215	61	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1961	215	64	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1962	215	65	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1963	215	72	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1964	215	73	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1966	215	126	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1968	215	127	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1971	215	74	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1973	215	77	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1979	215	214	55	2025-06-03 05:39:44	2025-06-04 09:13:31
1987	215	137	44	2025-06-03 05:39:44	2025-06-04 09:13:31
1984	215	134	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1986	215	136	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1989	215	138	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1993	215	189	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1994	215	171	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2000	215	95	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2001	215	96	44	2025-06-03 05:39:45	2025-06-04 07:08:51
1981	215	176	77	2025-06-03 05:39:44	2025-06-04 09:13:31
1906	210	214	77	2025-06-03 03:26:41	2025-06-06 14:13:35
2010	82	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2012	83	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2014	84	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2018	90	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2020	91	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2026	108	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2031	112	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2036	144	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2039	150	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2040	215	151	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2042	215	192	66	2025-06-03 05:39:45	2025-06-03 05:39:45
2043	192	215	77	2025-06-03 05:39:45	2025-06-03 05:39:45
2046	176	215	44	2025-06-03 05:40:06	2025-06-03 05:40:06
2047	189	215	55	2025-06-03 05:40:06	2025-06-03 05:40:06
2101	97	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2049	216	165	55	2025-06-03 08:40:56	2025-06-03 08:40:56
2050	216	197	66	2025-06-03 08:40:56	2025-06-03 08:40:56
2051	197	216	88	2025-06-03 08:40:56	2025-06-03 08:40:56
2052	216	204	66	2025-06-03 08:40:56	2025-06-03 08:40:56
2053	204	216	88	2025-06-03 08:40:56	2025-06-03 08:40:56
2054	216	212	66	2025-06-03 08:40:56	2025-06-03 08:40:56
2055	212	216	88	2025-06-03 08:40:56	2025-06-03 08:40:56
2080	216	200	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2085	216	135	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2089	216	195	44	2025-06-03 08:40:57	2025-06-03 08:40:57
2090	216	202	44	2025-06-03 08:40:57	2025-06-03 08:40:57
2091	216	209	66	2025-06-03 08:40:57	2025-06-03 08:40:57
2092	209	216	77	2025-06-03 08:40:57	2025-06-03 08:40:57
2096	216	196	66	2025-06-03 08:40:57	2025-06-03 08:40:57
2097	196	216	44	2025-06-03 08:40:57	2025-06-03 08:40:57
2098	216	210	44	2025-06-03 08:40:57	2025-07-10 19:24:02
2094	216	191	44	2025-06-03 08:40:57	2025-06-03 08:41:37
2105	216	102	55	2025-06-03 08:40:57	2025-06-03 16:29:55
1949	215	174	44	2025-06-03 05:39:44	2025-06-04 09:13:31
2044	215	211	44	2025-06-03 05:39:45	2025-06-03 15:33:54
2060	63	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2083	216	131	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2088	216	177	44	2025-06-03 08:40:57	2025-06-03 15:48:21
2079	216	129	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2100	216	97	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2005	215	101	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2006	215	103	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2007	215	80	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2008	215	81	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2009	215	82	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2011	215	83	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2013	215	84	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2015	215	87	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2016	215	89	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2017	215	90	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2019	215	91	55	2025-06-03 05:39:45	2025-06-04 07:08:51
2021	215	92	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2022	215	105	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2035	215	144	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2024	215	107	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2025	215	108	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2028	215	110	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2029	215	111	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2030	215	112	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2032	215	116	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2033	215	118	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2034	215	121	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2045	211	215	77	2025-06-03 05:39:45	2025-06-05 07:58:35
2023	215	106	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2037	215	146	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2038	215	150	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2041	215	53	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2048	216	54	55	2025-06-03 08:40:56	2025-07-10 19:24:01
2056	216	56	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2057	216	58	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2058	58	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2059	216	63	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2061	216	66	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2062	216	67	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2064	68	216	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2065	216	69	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2066	69	216	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2067	216	70	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2068	70	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2069	216	71	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2070	216	124	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2071	216	125	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2072	216	128	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2073	128	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2074	216	75	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2075	75	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2076	216	76	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2077	76	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2078	216	78	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2082	216	194	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2084	216	133	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2086	135	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2093	216	215	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2099	210	216	100	2025-06-03 08:40:57	2025-07-10 19:24:02
2102	216	99	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2103	99	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2104	216	100	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2106	216	79	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2107	216	85	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2108	216	86	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2109	86	216	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2110	216	88	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2140	216	173	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2141	173	216	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2162	69	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2163	219	70	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2164	70	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2165	219	71	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2166	219	124	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2167	219	125	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2168	219	128	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2169	128	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2170	219	75	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2171	75	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2172	219	76	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2173	76	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
1671	211	165	66	2025-05-31 16:48:23	2025-06-05 07:58:35
2174	219	78	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2175	219	129	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2142	200	211	44	2025-06-03 15:33:54	2025-06-03 15:33:54
1692	211	128	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1708	211	177	55	2025-05-31 16:48:23	2025-06-05 07:58:35
2111	216	93	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2114	113	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2118	216	119	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2176	219	200	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2081	216	50	44	2025-06-03 08:40:57	2025-06-03 16:07:03
2095	191	216	66	2025-06-03 08:40:57	2025-06-03 16:29:55
2112	216	104	55	2025-06-03 08:40:57	2025-06-03 16:29:55
2126	145	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2178	219	194	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2138	216	152	55	2025-06-03 08:40:57	2025-06-03 16:29:56
2113	216	113	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2115	216	114	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2123	216	123	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2127	216	143	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2131	140	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
1896	214	177	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1909	214	99	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1960	215	62	44	2025-06-03 05:39:44	2025-06-04 07:08:51
2143	215	216	44	2025-06-04 07:08:51	2025-06-04 07:08:51
2144	219	54	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2145	219	165	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2146	219	197	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2147	197	219	88	2025-06-04 07:24:04	2025-06-04 07:24:04
2148	219	204	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2149	204	219	88	2025-06-04 07:24:04	2025-06-04 07:24:04
2150	219	212	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2151	212	219	88	2025-06-04 07:24:04	2025-06-04 07:24:04
2152	219	56	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2153	219	58	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2154	58	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2155	219	63	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2156	63	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2157	219	66	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2158	219	67	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2159	219	68	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2160	68	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2161	219	69	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2179	219	131	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2180	219	133	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2181	219	135	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2182	135	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2183	219	142	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2184	219	177	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2185	219	195	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2186	219	202	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2187	219	209	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2188	209	219	77	2025-06-04 07:24:04	2025-06-04 07:24:04
2189	219	215	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2190	219	191	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2192	219	196	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2193	196	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2194	219	210	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2196	219	97	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2197	97	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2198	219	99	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2199	99	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2200	219	100	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2201	219	102	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2202	219	79	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2203	219	85	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2204	219	86	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2191	191	219	77	2025-06-04 07:24:04	2025-06-04 07:28:04
2027	215	109	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1855	211	212	55	2025-06-01 17:27:34	2025-06-05 07:58:35
1700	211	200	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1731	211	104	66	2025-05-31 16:48:23	2025-06-05 07:58:35
2195	210	219	100	2025-06-04 07:24:04	2025-06-06 14:13:35
2116	216	115	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2117	216	117	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2119	119	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2120	216	120	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2121	120	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2124	123	216	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2125	216	145	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2128	143	216	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2129	216	139	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2130	216	140	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2132	216	141	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2133	141	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2134	216	147	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2135	147	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2136	216	148	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2137	216	149	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2139	216	153	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2205	86	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2206	219	88	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2207	219	93	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2208	219	104	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2209	219	113	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2210	113	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2211	219	114	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2212	219	115	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2213	219	117	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2214	219	119	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2215	119	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2216	219	120	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2217	120	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2218	219	122	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2219	219	123	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2220	123	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2221	219	145	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2222	145	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2223	219	143	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2224	143	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2225	219	139	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2226	219	140	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2227	140	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2228	219	141	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2229	141	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2230	219	147	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2231	147	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2232	219	148	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2233	219	149	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2234	219	152	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2235	219	153	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2236	219	173	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2237	173	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2177	219	50	66	2025-06-04 07:24:04	2025-06-04 07:28:04
2238	223	54	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2241	197	223	88	2025-06-04 07:44:17	2025-06-04 07:44:17
2243	204	223	88	2025-06-04 07:44:17	2025-06-04 07:44:17
2245	212	223	88	2025-06-04 07:44:17	2025-06-04 07:44:17
2246	223	56	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2247	223	58	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2248	58	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2249	223	63	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2250	63	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2251	223	66	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2252	223	67	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2253	223	68	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2254	68	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2255	223	69	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2256	69	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2257	223	70	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2258	70	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2259	223	71	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2261	223	125	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2262	223	128	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2263	128	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2264	223	75	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2265	75	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2266	223	76	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2267	76	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2268	223	78	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2269	223	129	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2272	223	194	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2275	223	135	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2276	135	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2277	223	142	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2278	223	177	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2282	209	223	77	2025-06-04 07:44:17	2025-06-04 07:44:17
2285	191	223	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2287	196	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2290	223	97	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2291	97	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2292	223	99	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2293	99	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2294	223	100	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2295	223	102	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2296	223	79	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2297	223	85	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2298	223	86	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2299	86	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2300	223	88	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2301	223	93	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2303	223	113	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2304	113	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2305	223	114	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2306	223	115	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2307	223	117	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2308	223	119	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2309	119	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2240	223	197	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2242	223	204	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2244	223	212	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2260	223	124	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2270	223	200	66	2025-06-04 07:44:17	2025-06-04 07:46:10
2271	223	50	77	2025-06-04 07:44:17	2025-06-04 07:46:10
2273	223	131	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2274	223	133	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2279	223	195	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2281	223	209	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2283	223	215	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2284	223	191	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2286	223	196	66	2025-06-04 07:44:17	2025-06-04 07:46:10
2288	223	210	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2302	223	104	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2310	223	120	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2289	210	223	100	2025-06-04 07:44:17	2025-06-06 14:13:35
2311	120	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2313	223	123	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2314	123	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2315	223	145	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2316	145	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2317	223	143	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2318	143	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2320	223	140	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2321	140	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2323	141	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2324	223	147	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2325	147	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2326	223	148	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2327	223	149	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2329	223	153	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2330	223	173	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2331	173	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2239	223	165	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2280	223	202	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2312	223	122	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2319	223	139	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2322	223	141	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2328	223	152	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2335	197	224	88	2025-06-04 08:00:12	2025-06-04 08:00:12
2337	204	224	88	2025-06-04 08:00:12	2025-06-04 08:00:12
2339	212	224	88	2025-06-04 08:00:12	2025-06-04 08:00:12
2376	209	224	77	2025-06-04 08:00:13	2025-06-04 08:00:13
2381	196	224	44	2025-06-04 08:00:13	2025-06-04 08:00:13
2351	224	70	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2367	224	131	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2375	224	209	88	2025-06-04 08:00:13	2025-07-10 21:25:05
2391	224	85	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2394	224	88	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2334	224	197	88	2025-06-04 08:00:12	2025-07-10 21:25:04
2336	224	204	88	2025-06-04 08:00:12	2025-07-10 21:25:04
2338	224	212	88	2025-06-04 08:00:12	2025-07-10 21:25:04
2340	224	56	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2366	224	194	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2368	224	133	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2373	224	195	77	2025-06-04 08:00:13	2025-07-10 21:25:05
2377	224	215	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2342	58	224	55	2025-06-04 08:00:12	2025-07-10 21:12:01
2379	191	224	77	2025-06-04 08:00:13	2025-06-04 08:11:51
2385	97	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2384	224	97	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2389	224	102	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2397	224	113	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2402	224	119	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2411	224	143	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2414	224	140	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2382	224	210	77	2025-06-04 08:00:13	2025-07-10 21:25:05
2344	63	224	55	2025-06-04 08:00:12	2025-07-10 21:12:01
2348	68	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2350	69	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2352	70	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2357	128	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2359	75	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2361	76	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2365	224	50	100	2025-06-04 08:00:13	2025-07-10 21:25:04
2370	135	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2374	224	202	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2378	224	191	100	2025-06-04 08:00:13	2025-07-10 21:25:05
2387	99	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2393	86	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2398	113	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2403	119	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2405	120	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2408	123	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2410	145	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2415	140	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2332	224	54	66	2025-06-04 08:00:12	2025-07-10 21:25:04
2333	224	165	66	2025-06-04 08:00:12	2025-07-10 21:25:04
2341	224	58	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2345	224	66	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2346	224	67	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2347	224	68	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2349	224	69	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2353	224	71	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2354	224	124	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2355	224	125	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2356	224	128	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2358	224	75	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2360	224	76	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2362	224	78	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2363	224	129	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2364	224	200	77	2025-06-04 08:00:13	2025-07-10 21:25:04
2369	224	135	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2372	224	177	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2380	224	196	88	2025-06-04 08:00:13	2025-07-10 21:25:05
2386	224	99	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2388	224	100	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2390	224	79	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2392	224	86	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2396	224	104	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2399	224	114	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2400	224	115	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2401	224	117	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2404	224	120	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2406	224	122	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2407	224	123	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2409	224	145	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2413	224	139	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2425	173	224	55	2025-06-04 08:00:13	2025-06-04 08:00:13
2506	143	222	55	2025-06-04 10:17:59	2025-06-04 10:17:59
2395	224	93	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2423	224	153	55	2025-06-04 08:00:13	2025-07-10 21:25:05
1951	215	181	66	2025-06-03 05:39:44	2025-06-04 09:13:31
2429	197	222	88	2025-06-04 10:17:58	2025-06-04 10:17:58
2431	204	222	88	2025-06-04 10:17:58	2025-06-04 10:17:58
2433	212	222	88	2025-06-04 10:17:58	2025-06-04 10:17:58
2436	58	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2438	63	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2442	68	222	55	2025-06-04 10:17:58	2025-06-04 10:17:58
2444	69	222	55	2025-06-04 10:17:58	2025-06-04 10:17:58
2446	70	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2451	128	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2453	75	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2455	76	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2464	135	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2470	209	222	77	2025-06-04 10:17:58	2025-06-04 10:17:58
2475	196	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2479	97	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2481	99	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2487	86	222	55	2025-06-04 10:17:58	2025-06-04 10:17:58
2492	113	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2497	119	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2499	120	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2502	123	222	55	2025-06-04 10:17:59	2025-06-04 10:17:59
2504	145	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2509	140	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2511	141	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2513	147	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2519	173	222	55	2025-06-04 10:17:59	2025-06-04 10:17:59
2427	222	165	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2428	222	197	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2430	222	204	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2432	222	212	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2434	222	56	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2435	222	58	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2439	222	66	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2440	222	67	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2441	222	68	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2443	222	69	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2445	222	70	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2447	222	71	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2448	222	124	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2449	222	125	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2450	222	128	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2452	222	75	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2454	222	76	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2456	222	78	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2457	222	129	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2458	222	200	66	2025-06-04 10:17:58	2025-06-04 10:18:08
2459	222	50	88	2025-06-04 10:17:58	2025-06-04 10:18:08
2460	222	194	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2461	222	131	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2462	222	133	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2465	222	142	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2466	222	177	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2467	222	195	66	2025-06-04 10:17:58	2025-06-04 10:18:08
2468	222	202	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2469	222	209	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2471	222	215	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2472	222	191	88	2025-06-04 10:17:58	2025-06-04 10:18:08
2473	191	222	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2474	222	196	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2477	210	222	100	2025-06-04 10:17:58	2025-06-06 14:13:35
2478	222	97	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2480	222	99	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2482	222	100	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2483	222	102	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2484	222	79	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2485	222	85	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2486	222	86	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2488	222	88	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2490	222	104	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2491	222	113	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2493	222	114	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2494	222	115	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2495	222	117	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2496	222	119	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2498	222	120	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2500	222	122	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2501	222	123	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2503	222	145	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2505	222	143	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2507	222	139	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2508	222	140	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2510	222	141	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2512	222	147	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2514	222	148	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2515	222	149	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2516	222	152	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2518	222	173	44	2025-06-04 10:17:59	2025-06-04 10:18:08
2476	222	210	66	2025-06-04 10:17:58	2025-06-06 13:16:21
2417	141	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2419	147	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2343	224	63	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2416	224	141	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2418	224	147	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2420	224	148	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2421	224	149	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2422	224	152	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2424	224	173	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2426	222	54	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2437	222	63	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2463	222	135	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2489	222	93	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2517	222	153	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2520	226	174	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2521	174	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2522	226	181	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2523	226	193	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2524	193	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2525	226	223	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2526	223	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2527	226	55	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2528	226	57	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2529	226	59	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2530	226	60	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2531	226	61	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2532	61	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2533	226	62	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2534	226	64	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2535	226	65	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2536	226	72	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2537	226	73	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2538	73	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2539	226	126	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2540	126	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2541	226	127	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2542	127	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2543	226	166	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2544	226	74	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2545	74	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2546	226	77	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2547	77	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2548	226	130	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2549	130	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2550	226	51	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2551	51	226	88	2025-06-04 12:14:58	2025-06-04 12:14:58
2552	226	214	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2553	226	176	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2556	226	132	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2557	132	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2558	226	134	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2559	134	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2560	226	136	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2561	226	137	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2562	137	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2563	226	138	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2564	138	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2565	226	168	88	2025-06-04 12:14:58	2025-06-04 12:14:58
2566	168	226	88	2025-06-04 12:14:58	2025-06-04 12:14:58
2567	226	189	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2568	226	222	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2569	222	226	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2570	226	171	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2571	171	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2572	226	179	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2573	179	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2574	226	94	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2575	94	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2576	226	95	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2577	226	96	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2578	96	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2579	226	98	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2580	98	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2581	226	101	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2582	226	103	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2583	226	80	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2584	226	81	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2585	226	82	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2586	82	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2587	226	83	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2588	83	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2589	226	84	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2590	84	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2591	226	87	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2592	226	89	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2593	226	90	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2594	90	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2595	226	91	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2596	91	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2597	226	92	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2599	226	105	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2600	226	106	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2601	226	107	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2602	226	108	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2603	108	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2604	226	109	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2605	226	110	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2606	226	111	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2607	226	112	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2608	112	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2609	226	116	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2610	226	118	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2611	226	121	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2612	226	144	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2613	144	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2614	226	146	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2615	226	150	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2616	150	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2617	226	151	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2618	226	53	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2619	226	192	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2620	192	226	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2598	226	216	88	2025-06-04 12:14:58	2025-07-10 19:24:02
2554	226	224	88	2025-06-04 12:14:58	2025-07-10 21:12:01
2555	224	226	88	2025-06-04 12:14:58	2025-07-10 21:25:05
2623	226	219	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2624	227	54	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2625	227	165	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2626	227	197	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2627	197	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2628	227	204	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2629	204	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2630	227	212	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2631	212	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2632	227	56	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2633	227	58	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2634	58	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2635	227	63	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2636	63	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2637	227	66	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2638	227	67	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2639	227	68	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2640	68	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2641	227	69	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2642	69	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2643	227	70	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2644	70	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2645	227	71	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2646	227	124	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2647	227	125	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2648	227	128	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2649	128	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2650	227	75	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2651	75	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2652	227	76	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2653	76	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2654	227	78	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2655	227	129	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2656	227	200	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2657	227	50	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2658	227	194	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2659	227	131	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2660	227	133	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2661	227	135	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2662	135	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2663	227	142	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2664	227	177	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2665	227	195	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2666	227	202	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2667	227	209	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2668	209	227	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2669	227	215	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2670	227	191	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2671	191	227	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2672	227	196	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2673	196	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2676	227	97	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2677	97	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2678	227	99	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2679	99	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2680	227	100	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2681	227	102	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2682	227	79	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2683	227	85	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2684	227	86	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2685	86	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2686	227	88	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2687	227	93	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2688	227	226	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2689	226	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2690	227	104	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2691	227	113	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2692	113	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2693	227	114	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2694	227	115	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2695	227	117	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2696	227	119	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2697	119	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2698	227	120	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2699	120	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2700	227	122	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2701	227	123	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2702	123	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2703	227	145	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2704	145	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2705	227	143	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2706	143	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2707	227	139	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2708	227	140	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2709	140	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2710	227	141	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2711	141	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2712	227	147	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2713	147	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2714	227	148	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2715	227	149	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2716	227	152	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2717	227	153	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2718	227	173	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2719	173	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2720	230	174	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2721	174	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2722	230	181	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2723	230	193	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2724	193	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2725	230	223	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2726	223	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2727	230	55	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2728	230	57	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2674	227	210	77	2025-06-04 17:28:08	2025-06-06 13:29:37
2675	210	227	100	2025-06-04 17:28:08	2025-06-06 14:13:35
2729	230	59	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2730	230	60	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2731	230	61	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2732	61	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2733	230	62	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2734	230	64	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2735	230	65	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2736	230	72	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2737	230	73	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2738	73	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2739	230	126	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2740	126	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2741	230	127	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2742	127	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2743	230	166	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2744	230	74	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2745	74	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2746	230	77	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2747	77	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2748	230	130	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2749	130	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2750	230	51	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2751	51	230	88	2025-06-05 07:04:13	2025-06-05 07:04:13
2752	230	214	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2753	230	176	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2756	230	132	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2757	132	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2758	230	134	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2759	134	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2760	230	136	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2761	230	137	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2762	137	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2763	230	138	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2764	138	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2765	230	168	88	2025-06-05 07:04:13	2025-06-05 07:04:13
2766	168	230	88	2025-06-05 07:04:13	2025-06-05 07:04:13
2767	230	189	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2768	230	222	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2769	222	230	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2770	230	171	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2771	171	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2772	230	179	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2773	179	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2774	230	94	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2775	94	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2776	230	95	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2777	230	96	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2778	96	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2779	230	98	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2780	98	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2781	230	101	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2782	230	103	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2783	230	80	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2784	230	81	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2785	230	82	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2786	82	230	55	2025-06-05 07:04:14	2025-06-05 07:04:14
2787	230	83	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2788	83	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2789	230	84	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2790	84	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2791	230	87	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2792	230	89	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2793	230	90	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2794	90	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2795	230	91	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2796	91	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2797	230	92	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2799	230	105	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2800	230	106	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2801	230	107	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2802	230	108	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2803	108	230	55	2025-06-05 07:04:14	2025-06-05 07:04:14
2804	230	109	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2805	230	110	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2806	230	111	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2807	230	112	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2808	112	230	55	2025-06-05 07:04:14	2025-06-05 07:04:14
2809	230	116	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2810	230	118	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2811	230	121	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2812	230	144	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2813	144	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2814	230	146	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2815	230	150	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2816	150	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2817	230	151	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2818	230	53	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2819	230	192	100	2025-06-05 07:04:14	2025-06-05 07:04:14
2820	192	230	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2823	230	219	100	2025-06-05 07:04:14	2025-06-05 07:04:14
2622	211	226	55	2025-06-04 12:14:58	2025-06-05 07:58:35
2821	230	211	88	2025-06-05 07:04:14	2025-06-05 07:40:43
2621	226	211	88	2025-06-04 12:14:58	2025-06-05 07:40:43
2825	227	230	100	2025-06-05 07:04:14	2025-06-05 07:45:52
2824	230	227	88	2025-06-05 07:04:14	2025-06-05 07:45:52
2826	231	54	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2827	231	165	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2828	231	197	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2829	197	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2830	231	204	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2831	204	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2832	231	212	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2833	212	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2798	230	216	88	2025-06-05 07:04:14	2025-07-10 19:24:01
2754	230	224	88	2025-06-05 07:04:13	2025-07-10 21:12:01
2755	224	230	88	2025-06-05 07:04:13	2025-07-10 21:25:04
2834	231	230	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2835	230	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2836	231	56	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2837	231	58	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2838	58	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2839	231	63	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2840	63	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2841	231	66	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2842	231	67	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2843	231	68	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2844	68	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2845	231	69	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2846	69	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2847	231	70	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2848	70	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2849	231	71	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2850	231	124	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2851	231	125	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2852	231	128	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2853	128	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2854	231	75	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2855	75	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2856	231	76	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2857	76	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2858	231	78	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2859	231	129	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2860	231	200	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2861	231	50	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2862	231	194	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2863	231	131	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2864	231	133	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2865	231	135	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2866	135	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2867	231	142	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2868	231	177	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2869	231	195	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2870	231	202	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2871	231	209	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2872	209	231	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2873	231	215	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2874	231	191	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2875	191	231	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2876	231	196	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2877	196	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2880	231	97	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2881	97	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2882	231	99	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2883	99	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2884	231	100	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2885	231	102	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2886	231	79	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2887	231	85	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2888	231	86	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2889	86	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2890	231	88	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2891	231	93	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2892	231	226	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2893	226	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2894	231	104	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2895	231	113	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2896	113	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2897	231	114	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2898	231	115	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2899	231	117	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2900	231	119	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2901	119	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2902	231	120	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2903	120	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2904	231	122	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2905	231	123	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2906	123	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2907	231	145	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2908	145	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2909	231	143	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2910	143	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2911	231	139	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2912	231	140	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2913	140	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2914	231	141	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2915	141	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2916	231	147	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2917	147	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2918	231	148	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2919	231	149	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2920	231	152	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2921	231	153	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2922	231	173	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2923	173	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2822	211	230	55	2025-06-05 07:04:14	2025-06-05 07:58:35
2924	232	54	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2925	232	165	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2926	232	197	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2927	197	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2928	232	204	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2929	204	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2930	232	212	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2931	212	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2932	232	230	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2933	230	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2934	232	56	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2935	232	58	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2936	58	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2937	232	63	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2938	63	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2939	232	66	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2879	210	231	100	2025-06-05 07:55:48	2025-06-06 14:13:35
2940	232	67	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2941	232	68	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2942	68	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2943	232	69	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2944	69	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2945	232	70	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2946	70	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2947	232	71	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2948	232	124	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2949	232	125	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2950	232	128	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2951	128	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2952	232	75	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2953	75	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2954	232	76	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2955	76	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2956	232	78	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2957	232	129	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2958	232	200	66	2025-06-05 08:09:26	2025-06-05 08:09:26
2959	232	50	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2960	232	194	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2961	232	131	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2962	232	133	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2963	232	135	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2964	135	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2965	232	142	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2966	232	177	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2967	232	195	66	2025-06-05 08:09:26	2025-06-05 08:09:26
2968	232	202	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2969	232	209	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2970	209	232	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2971	232	215	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2972	232	191	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2973	191	232	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2974	232	196	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2975	196	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2978	232	97	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2979	97	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2980	232	99	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2981	99	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2982	232	100	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2983	232	102	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2984	232	79	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2985	232	85	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2986	232	86	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2987	86	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2988	232	88	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2989	232	93	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2990	232	226	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2991	226	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2992	232	104	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2993	232	113	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2994	113	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2995	232	114	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2996	232	115	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2997	232	117	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2998	232	119	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2999	119	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3000	232	120	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3001	120	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3002	232	122	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3003	232	123	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3004	123	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3005	232	145	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3006	145	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3007	232	143	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3008	143	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3009	232	139	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3010	232	140	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3011	140	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3012	232	141	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3013	141	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3014	232	147	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3015	147	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3016	232	148	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3017	232	149	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3018	232	152	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3019	232	153	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3020	232	173	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3021	173	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3025	197	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3027	204	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3029	212	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3031	230	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3033	233	58	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3034	58	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3035	233	63	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3036	63	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3037	233	66	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3039	233	68	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3040	68	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3041	233	69	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3042	69	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3043	233	70	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3044	70	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3023	233	165	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3024	233	197	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3026	233	204	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3028	233	212	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3030	233	230	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3032	233	56	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3038	233	67	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3045	233	71	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3046	233	124	55	2025-06-05 09:00:49	2025-06-05 09:01:43
2976	232	210	55	2025-06-05 08:09:26	2025-06-06 13:29:36
3049	128	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3050	233	75	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3051	75	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3052	233	76	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3053	76	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3054	233	78	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3062	135	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3068	209	233	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3073	196	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3077	97	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3079	99	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3083	233	85	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3084	233	86	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3085	86	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3086	233	88	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3087	233	93	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3089	226	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3092	113	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3097	119	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3099	120	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3102	123	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3104	145	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3106	143	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3109	140	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3111	141	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3113	147	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3118	233	173	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3119	173	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3022	233	54	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3047	233	125	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3048	233	128	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3055	233	129	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3056	233	200	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3057	233	50	88	2025-06-05 09:00:49	2025-06-05 09:01:43
3058	233	194	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3059	233	131	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3060	233	133	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3061	233	135	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3063	233	142	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3064	233	177	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3065	233	195	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3066	233	202	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3067	233	209	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3069	233	215	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3070	233	191	77	2025-06-05 09:00:49	2025-06-05 09:01:43
3071	191	233	77	2025-06-05 09:00:49	2025-06-05 09:01:43
3072	233	196	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3074	233	210	44	2025-06-05 09:00:49	2025-06-06 13:29:37
3076	233	97	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3078	233	99	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3080	233	100	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3081	233	102	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3082	233	79	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3088	233	226	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3090	233	104	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3091	233	113	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3093	233	114	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3094	233	115	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3095	233	117	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3096	233	119	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3098	233	120	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3100	233	122	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3101	233	123	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3103	233	145	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3105	233	143	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3107	233	139	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3108	233	140	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3110	233	141	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3112	233	147	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3114	233	148	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3115	233	149	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3116	233	152	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3117	233	153	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3120	234	54	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3121	234	165	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3122	234	197	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3123	197	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3124	234	204	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3125	204	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3126	234	212	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3127	212	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3128	234	230	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3129	230	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3130	234	56	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3131	234	58	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3132	58	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3133	234	63	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3134	63	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3135	234	66	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3136	234	67	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3137	234	68	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3138	68	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3139	234	69	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3140	69	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3141	234	70	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3142	70	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3143	234	71	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3144	234	124	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3145	234	125	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3146	234	128	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3147	128	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3148	234	75	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3149	75	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3150	234	76	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3151	76	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3152	234	78	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3153	234	129	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3154	234	200	77	2025-06-05 09:10:35	2025-06-05 09:10:35
3155	234	50	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3156	234	194	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3157	234	131	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3158	234	133	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3159	234	135	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3160	135	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3161	234	142	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3162	234	177	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3163	234	195	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3164	234	202	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3165	234	209	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3166	209	234	77	2025-06-05 09:10:35	2025-06-05 09:10:35
3167	234	215	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3168	234	191	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3169	191	234	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3170	234	196	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3171	196	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3174	234	97	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3175	97	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3176	234	99	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3177	99	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3178	234	100	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3179	234	102	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3180	234	79	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3181	234	85	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3182	234	86	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3183	86	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3184	234	88	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3185	234	93	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3186	234	226	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3187	226	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3188	234	104	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3189	234	113	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3190	113	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3191	234	114	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3192	234	115	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3193	234	117	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3194	234	119	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3195	119	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3196	234	120	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3197	120	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3198	234	122	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3199	234	123	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3200	123	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3201	234	145	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3202	145	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3203	234	143	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3204	143	234	55	2025-06-05 09:10:36	2025-06-05 09:10:36
3205	234	139	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3206	234	140	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3207	140	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3208	234	141	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3209	141	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3210	234	147	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3211	147	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3212	234	148	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3213	234	149	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3214	234	152	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3215	234	153	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3216	234	173	55	2025-06-05 09:10:36	2025-06-05 09:10:36
3217	173	234	55	2025-06-05 09:10:36	2025-06-05 09:10:36
3218	235	174	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3219	174	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3220	235	181	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3221	235	193	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3222	193	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3223	235	223	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3224	223	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3225	235	55	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3226	55	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3227	235	57	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3228	57	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3229	235	59	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3230	59	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3231	235	60	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3232	60	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3233	235	61	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3234	61	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3235	235	62	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3236	235	64	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3237	235	65	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3238	65	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3239	235	72	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3240	72	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3241	235	73	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3242	73	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3243	235	126	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3244	126	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3245	235	127	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3246	127	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3247	235	166	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3248	166	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3249	235	74	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3250	74	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3251	235	77	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3252	77	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3253	235	130	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3254	130	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3255	235	51	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3256	51	235	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3257	235	214	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3172	234	210	66	2025-06-05 09:10:35	2025-06-06 13:16:21
3258	235	176	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3261	235	231	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3262	231	235	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3263	235	132	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3264	132	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3265	235	134	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3266	134	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3267	235	136	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3268	136	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3269	235	137	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3270	137	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3271	235	138	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3272	138	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3273	235	168	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3274	168	235	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3275	235	189	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3276	189	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3277	235	222	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3278	222	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3279	235	232	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3280	232	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3281	235	171	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3282	171	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3283	235	179	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3284	179	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3285	235	94	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3286	94	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3287	235	95	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3288	95	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3289	235	96	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3290	96	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3291	235	98	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3292	98	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3293	235	101	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3294	235	103	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3295	103	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3296	235	80	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3297	80	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3298	235	81	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3299	235	82	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3300	82	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3301	235	83	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3302	83	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3303	235	84	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3304	84	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3305	235	87	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3306	87	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3307	235	89	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3308	89	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3309	235	90	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3310	90	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3311	235	91	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3312	91	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3313	235	92	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3314	92	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3316	235	233	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3317	233	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3318	235	105	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3319	105	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3320	235	106	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3321	235	107	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3322	235	108	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3323	108	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3324	235	109	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3325	235	110	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3326	235	111	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3327	111	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3328	235	112	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3329	112	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3330	235	116	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3331	116	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3332	235	118	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3333	118	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3334	235	121	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3335	121	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3336	235	144	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3337	144	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3338	235	146	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3339	146	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3340	235	150	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3341	150	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3342	235	151	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3343	235	53	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3344	235	192	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3345	192	235	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3346	235	219	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3347	235	227	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3348	227	235	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3349	235	211	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3350	235	234	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3351	234	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3352	237	174	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3353	174	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3358	223	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3359	237	55	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3360	55	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3361	237	57	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3362	57	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3363	237	59	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3364	59	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3355	237	193	66	2025-06-05 12:06:28	2025-06-05 12:30:01
3315	235	216	88	2025-06-05 10:31:02	2025-07-10 19:24:01
3356	193	237	77	2025-06-05 12:06:28	2025-06-05 12:30:16
3357	237	223	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3259	235	224	88	2025-06-05 10:31:02	2025-07-10 21:12:01
3260	224	235	88	2025-06-05 10:31:02	2025-07-10 21:25:04
3365	237	60	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3366	60	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3367	237	61	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3368	61	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3369	237	62	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3370	237	64	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3371	237	65	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3372	65	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3373	237	72	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3374	72	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3375	237	73	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3376	73	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3378	126	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3380	127	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3382	166	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3383	237	74	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3384	74	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3385	237	77	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3386	77	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3388	130	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3390	51	237	88	2025-06-05 12:06:28	2025-06-05 12:06:28
3392	237	176	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3396	231	237	88	2025-06-05 12:06:28	2025-06-05 12:06:28
3398	132	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3400	134	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3402	136	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3404	137	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3406	138	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3408	168	237	100	2025-06-05 12:06:28	2025-06-05 12:06:28
3412	222	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3415	237	171	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3416	171	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3418	179	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3420	94	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3422	95	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3424	96	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3426	98	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3429	103	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3430	237	80	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3431	80	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3432	237	81	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3433	237	82	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3434	82	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3435	237	83	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3436	83	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3437	237	84	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3438	84	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3439	237	87	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3440	87	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3441	237	89	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3442	89	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3443	237	90	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3444	90	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3445	237	91	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3446	91	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3447	237	92	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3448	92	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3453	105	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3457	108	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3461	111	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3463	112	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3465	116	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3467	118	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3469	121	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3470	237	144	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3471	144	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3379	237	127	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3381	237	166	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3387	237	130	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3394	224	237	88	2025-06-05 12:06:28	2025-07-10 21:25:05
3391	237	214	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3395	237	231	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3407	237	168	44	2025-06-05 12:06:28	2025-06-05 12:30:16
3397	237	132	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3399	237	134	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3403	237	137	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3405	237	138	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3410	189	237	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3409	237	189	66	2025-06-05 12:06:28	2025-06-05 12:30:01
3413	237	232	88	2025-06-05 12:06:28	2025-06-05 12:30:16
3414	232	237	66	2025-06-05 12:06:28	2025-06-05 12:30:01
3450	237	233	88	2025-06-05 12:06:28	2025-06-05 12:30:16
3419	237	94	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3421	237	95	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3423	237	96	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3425	237	98	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3427	237	101	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3428	237	103	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3451	233	237	55	2025-06-05 12:06:28	2025-06-05 12:30:01
3452	237	105	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3454	237	106	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3455	237	107	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3456	237	108	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3459	237	110	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3460	237	111	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3462	237	112	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3464	237	116	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3466	237	118	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3468	237	121	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3389	237	51	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3411	237	222	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3417	237	179	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3449	237	216	77	2025-06-05 12:06:28	2025-07-10 19:24:02
3393	237	224	66	2025-06-05 12:06:28	2025-07-10 21:12:01
3472	237	146	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3473	146	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3474	237	150	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3475	150	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3476	237	151	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3479	192	237	77	2025-06-05 12:06:28	2025-06-05 12:06:28
3354	237	181	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3377	237	126	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3401	237	136	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3458	237	109	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3477	237	53	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3554	179	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3482	227	237	88	2025-06-05 12:06:28	2025-06-05 12:30:01
3486	211	237	55	2025-06-05 12:30:01	2025-06-05 12:30:01
3556	94	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3485	234	237	77	2025-06-05 12:06:28	2025-06-05 12:30:01
3487	176	237	44	2025-06-05 12:30:16	2025-06-05 12:30:16
3478	237	192	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3480	237	219	44	2025-06-05 12:06:28	2025-06-05 12:30:16
3481	237	227	88	2025-06-05 12:06:28	2025-06-05 12:30:16
3483	237	211	66	2025-06-05 12:06:28	2025-06-05 12:30:16
3484	237	234	77	2025-06-05 12:06:28	2025-06-05 12:30:16
3489	174	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3492	193	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3494	223	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3496	55	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3498	57	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3500	59	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3502	60	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3504	61	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3508	65	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3510	72	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3512	73	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3514	126	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3516	127	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3518	166	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3520	74	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3522	77	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3524	130	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3526	51	238	88	2025-06-05 14:30:38	2025-06-05 14:30:38
3532	231	238	88	2025-06-05 14:30:38	2025-06-05 14:30:38
3534	132	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3536	134	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3538	136	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3540	137	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3542	138	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3544	168	238	100	2025-06-05 14:30:38	2025-06-05 14:30:38
3546	189	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3548	222	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3552	171	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3558	95	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3560	96	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3562	98	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3565	103	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3567	80	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3570	82	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3572	83	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3574	84	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3499	238	59	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3495	238	55	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3497	238	57	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3501	238	60	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3503	238	61	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3507	238	65	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3505	238	62	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3506	238	64	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3513	238	126	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3509	238	72	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3511	238	73	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3517	238	166	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3515	238	127	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3521	238	77	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3523	238	130	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3525	238	51	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3530	224	238	77	2025-06-05 14:30:38	2025-07-10 21:25:05
3527	238	214	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3531	238	231	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3535	238	134	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3533	238	132	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3539	238	137	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3537	238	136	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3541	238	138	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3543	238	168	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3547	238	222	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3545	238	189	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3549	238	232	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3550	232	238	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3551	238	171	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3559	238	96	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3555	238	94	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3557	238	95	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3561	238	98	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3569	238	82	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3563	238	101	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3566	238	80	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3568	238	81	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3571	238	83	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3573	238	84	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3493	238	223	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3490	238	181	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3519	238	74	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3553	238	179	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3529	238	224	55	2025-06-05 14:30:38	2025-07-10 21:12:01
3576	87	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3578	89	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3580	90	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3582	91	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3584	92	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3589	105	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3593	108	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3597	111	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3599	112	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3601	116	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3603	118	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3605	121	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3607	144	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3609	146	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3611	150	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3615	192	238	77	2025-06-05 14:30:38	2025-06-05 14:30:38
3622	239	174	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3623	174	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3624	239	181	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3627	239	223	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3628	223	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3629	239	55	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3630	55	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3631	239	57	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3632	57	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3633	239	59	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3634	59	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3635	239	60	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3636	60	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3637	239	61	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3638	61	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3639	239	62	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3640	239	64	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3641	239	65	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3642	65	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3643	239	72	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3644	72	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3645	239	73	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3646	73	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3647	239	126	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3648	126	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3649	239	127	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3650	127	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3651	239	166	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3652	166	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3653	239	74	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3654	74	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3655	239	77	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3656	77	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3657	239	130	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3658	130	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3659	239	51	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3660	51	239	88	2025-06-06 03:58:44	2025-06-06 03:58:44
3661	239	214	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3662	239	176	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3665	239	231	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3666	231	239	88	2025-06-06 03:58:44	2025-06-06 03:58:44
3667	239	132	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3668	132	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3669	239	134	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3670	134	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3671	239	136	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3672	136	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3673	239	137	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3674	137	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3675	239	138	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3676	138	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3677	239	168	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3678	168	239	100	2025-06-06 03:58:44	2025-06-06 03:58:44
3679	239	189	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3681	239	222	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3626	193	239	77	2025-06-06 03:58:44	2025-06-06 04:01:27
3680	189	239	66	2025-06-06 03:58:44	2025-06-06 04:01:27
3577	238	89	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3581	238	91	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3583	238	92	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3592	238	108	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3587	233	238	55	2025-06-05 14:30:38	2025-06-06 13:16:33
3586	238	233	88	2025-06-05 14:30:38	2025-06-06 13:09:58
3591	238	107	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3596	238	111	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3594	238	109	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3595	238	110	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3598	238	112	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3600	238	116	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3606	238	144	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3602	238	118	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3604	238	121	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3610	238	150	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3608	238	146	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3613	238	53	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3612	238	151	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3614	238	192	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3616	238	219	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3618	227	238	88	2025-06-05 14:30:38	2025-06-06 13:16:33
3619	238	211	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3621	234	238	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3575	238	87	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3590	238	106	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3617	238	227	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3585	238	216	66	2025-06-05 14:30:38	2025-07-10 19:24:02
3579	238	90	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3663	239	224	55	2025-06-06 03:58:44	2025-07-10 21:12:01
3664	224	239	77	2025-06-06 03:58:44	2025-07-10 21:25:05
3682	222	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3684	232	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3685	239	171	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3686	171	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3687	239	179	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3688	179	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3689	239	94	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3690	94	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3691	239	95	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3692	95	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3693	239	96	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3694	96	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3695	239	98	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3696	98	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3697	239	101	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3698	239	103	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3699	103	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3700	239	80	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3701	80	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3702	239	81	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3703	239	82	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3704	82	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3705	239	83	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3706	83	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3707	239	84	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3708	84	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3709	239	87	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3710	87	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3711	239	89	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3712	89	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3713	239	90	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3714	90	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3715	239	91	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3716	91	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3717	239	92	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3718	92	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3721	233	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3722	239	105	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3723	105	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3724	239	106	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3725	239	107	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3726	239	108	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3727	108	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3728	239	109	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3729	239	110	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3730	239	111	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3731	111	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3732	239	112	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3733	112	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3734	239	116	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3735	116	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3736	239	118	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3737	118	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3738	239	121	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3739	121	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3740	239	144	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3741	144	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3742	239	146	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3743	146	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3744	239	150	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3745	150	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3746	239	151	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3747	239	53	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3752	227	239	88	2025-06-06 03:58:44	2025-06-06 03:58:44
3754	211	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3756	234	239	77	2025-06-06 03:58:44	2025-06-06 03:58:44
3625	239	193	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3757	176	239	55	2025-06-06 04:01:27	2025-06-06 04:01:27
3683	239	232	66	2025-06-06 03:58:44	2025-06-06 04:01:27
3720	239	233	77	2025-06-06 03:58:44	2025-06-06 04:01:27
3748	239	192	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3749	192	239	88	2025-06-06 03:58:44	2025-06-06 04:01:27
3750	239	219	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3751	239	227	66	2025-06-06 03:58:44	2025-06-06 04:01:27
3753	239	211	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3755	239	234	55	2025-06-06 03:58:44	2025-06-06 04:01:27
3758	240	174	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3759	174	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3760	240	181	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3764	223	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3765	240	55	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3766	55	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3767	240	57	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3768	57	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3769	240	59	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3770	59	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3771	240	60	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3772	60	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3773	240	61	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3774	61	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3775	240	62	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3776	240	64	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3777	240	65	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3778	65	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3779	240	72	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3780	72	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3781	240	73	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3782	73	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3784	126	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3786	127	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3762	193	240	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3783	240	126	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3785	240	127	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3787	240	166	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3719	239	216	66	2025-06-06 03:58:44	2025-07-10 19:24:02
3788	166	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3789	240	74	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3790	74	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3791	240	77	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3792	77	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3794	130	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3796	51	240	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3802	231	240	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3804	132	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3806	134	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3808	136	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3810	137	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3812	138	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3814	168	240	100	2025-06-06 11:41:53	2025-06-06 11:41:53
3815	240	189	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3818	222	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3820	232	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3821	240	171	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3822	171	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3824	179	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3826	94	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3828	95	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3830	96	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3832	98	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3835	103	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3836	240	80	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3837	80	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3838	240	81	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3839	240	82	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3840	82	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3841	240	83	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3842	83	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3843	240	84	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3844	84	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3845	240	87	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3846	87	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3847	240	89	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3848	89	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3849	240	90	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3850	90	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3851	240	91	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3852	91	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3853	240	92	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3854	92	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3855	240	216	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3857	233	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3859	105	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3863	108	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3867	111	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3869	112	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3871	116	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3873	118	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3875	121	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3876	240	144	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3877	144	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3878	240	146	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3879	146	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3880	240	150	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3881	150	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3882	240	151	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3888	227	240	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3890	211	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3892	234	240	77	2025-06-06 11:41:53	2025-06-06 11:41:53
3761	240	193	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3763	240	223	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3795	240	51	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3797	240	214	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3798	240	176	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3801	240	231	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3803	240	132	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3805	240	134	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3807	240	136	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3809	240	137	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3813	240	168	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3816	189	240	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3817	240	222	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3819	240	232	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3823	240	179	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3825	240	94	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3827	240	95	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3829	240	96	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3831	240	98	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3833	240	101	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3834	240	103	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3856	240	233	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3858	240	105	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3860	240	106	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3861	240	107	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3862	240	108	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3864	240	109	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3865	240	110	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3868	240	112	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3870	240	116	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3872	240	118	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3874	240	121	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3883	240	53	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3884	240	192	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3885	192	240	88	2025-06-06 11:41:53	2025-06-06 11:42:14
3886	240	219	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3887	240	227	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3889	240	211	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3891	240	234	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3799	240	224	55	2025-06-06 11:41:53	2025-07-10 21:25:05
3800	224	240	88	2025-06-06 11:41:53	2025-07-10 21:25:05
3793	240	130	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3893	176	240	55	2025-06-06 11:42:14	2025-06-06 11:42:14
3811	240	138	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3866	240	111	44	2025-06-06 11:41:53	2025-06-06 11:42:14
1578	174	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
3894	55	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3895	57	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3896	59	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3897	60	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3898	65	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3899	72	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3900	166	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
2878	231	210	88	2025-06-05 07:55:48	2025-06-06 13:16:20
3902	136	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
1623	179	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
3904	95	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3905	103	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3906	80	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3907	87	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3908	89	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3909	92	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3910	105	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3911	111	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3912	116	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3913	118	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3914	121	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3915	146	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3917	174	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3564	238	103	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3488	238	174	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3491	238	193	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3528	238	176	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3588	238	105	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3620	238	234	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3922	223	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3901	176	210	44	2025-06-06 13:16:20	2025-06-06 13:40:38
3924	55	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3926	57	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3927	241	59	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3928	59	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3929	241	60	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3930	60	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3931	241	61	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3903	189	210	44	2025-06-06 13:16:21	2025-06-06 13:40:53
3932	61	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3935	241	65	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3936	65	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3938	72	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3940	73	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3941	241	126	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3942	126	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3944	127	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3945	241	166	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3946	166	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3948	74	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3949	241	77	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3950	77	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3951	241	130	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3173	210	234	100	2025-06-05 09:10:35	2025-06-06 14:13:35
3952	130	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3954	51	241	88	2025-06-06 14:00:39	2025-06-06 14:00:39
3978	232	241	55	2025-06-06 14:00:39	2025-06-06 14:32:30
1608	210	132	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1620	210	171	77	2025-05-31 15:04:08	2025-06-06 14:13:35
3075	210	233	100	2025-06-05 09:00:49	2025-06-06 14:13:35
1659	210	118	77	2025-05-31 15:04:08	2025-06-06 14:13:35
3920	193	241	66	2025-06-06 14:00:39	2025-06-06 14:32:30
3916	241	174	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3960	231	241	88	2025-06-06 14:00:39	2025-06-06 14:00:39
3962	132	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3963	241	134	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3964	134	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3966	136	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3967	241	137	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3968	137	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3969	241	138	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3970	138	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3972	168	241	100	2025-06-06 14:00:39	2025-06-06 14:00:39
3976	222	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3979	241	171	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3974	189	241	44	2025-06-06 14:00:39	2025-06-06 14:32:30
3921	241	223	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3923	241	55	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3925	241	57	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3933	241	62	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3934	241	64	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3937	241	72	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3939	241	73	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3943	241	127	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3947	241	74	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3953	241	51	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3955	241	214	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3957	241	224	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3959	241	231	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3961	241	132	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3965	241	136	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3971	241	168	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3973	241	189	100	2025-06-06 14:00:39	2025-06-06 14:32:30
3975	241	222	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3977	241	232	88	2025-06-06 14:00:39	2025-06-06 14:32:30
2383	210	224	100	2025-06-04 08:00:13	2025-06-06 14:13:35
2977	210	232	100	2025-06-05 08:09:26	2025-06-06 14:13:35
3919	241	193	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3958	224	241	77	2025-06-06 14:00:39	2025-07-10 21:25:04
3980	171	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3982	179	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3984	94	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3986	95	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3987	241	96	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3988	96	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3989	241	98	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3990	98	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3993	103	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3995	80	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3997	241	82	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3998	82	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3999	241	83	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4000	83	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4001	241	84	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4002	84	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4004	87	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4006	89	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4007	241	90	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4008	90	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4009	241	91	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4010	91	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4012	92	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4016	241	105	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4017	105	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4020	241	108	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4021	108	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4024	241	111	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4025	111	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4026	241	112	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4027	112	241	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4028	241	116	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4029	116	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4031	118	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4033	121	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4034	241	144	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4035	144	241	55	2025-06-06 14:00:40	2025-06-06 14:00:40
4037	146	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4038	241	150	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4039	150	241	55	2025-06-06 14:00:40	2025-06-06 14:00:40
4050	176	241	55	2025-06-06 14:00:59	2025-06-06 14:00:59
3996	241	81	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4003	241	87	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4005	241	89	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4011	241	92	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4014	241	233	100	2025-06-06 14:00:39	2025-06-06 14:32:30
4015	233	241	44	2025-06-06 14:00:39	2025-06-06 14:32:30
4049	234	241	66	2025-06-06 14:00:40	2025-06-06 14:32:30
4053	174	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4054	242	181	77	2025-06-07 12:10:40	2025-06-07 12:10:40
4018	241	106	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4058	223	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4060	55	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4062	57	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4019	241	107	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4064	59	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4022	241	109	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4023	241	110	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4030	241	118	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4032	241	121	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4036	241	146	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4040	241	151	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4041	241	53	66	2025-06-06 14:00:40	2025-06-06 14:32:30
4042	241	192	88	2025-06-06 14:00:40	2025-06-06 14:32:30
4043	192	241	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4051	211	241	55	2025-06-06 14:07:46	2025-06-06 14:07:46
4044	241	219	100	2025-06-06 14:00:40	2025-06-06 14:32:30
4066	60	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4068	61	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
3918	241	181	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3956	241	176	66	2025-06-06 14:00:39	2025-06-06 14:32:30
3981	241	179	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3983	241	94	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3985	241	95	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3991	241	101	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3992	241	103	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3994	241	80	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4045	241	227	88	2025-06-06 14:00:40	2025-06-06 14:32:30
4046	227	241	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4047	241	211	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4048	241	234	88	2025-06-06 14:00:40	2025-06-06 14:32:30
4072	65	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4074	72	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4076	73	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4078	126	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4080	127	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4082	166	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4056	193	242	77	2025-06-07 12:10:40	2025-06-07 12:10:50
4081	242	166	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4059	242	55	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4061	242	57	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4063	242	59	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4065	242	60	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4067	242	61	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4069	242	62	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4070	242	64	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4071	242	65	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4073	242	72	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4075	242	73	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4077	242	126	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4079	242	127	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4013	241	216	88	2025-06-06 14:00:39	2025-07-10 19:24:01
4055	242	193	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4084	74	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4086	77	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4088	130	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4090	51	242	88	2025-06-07 12:10:40	2025-06-07 12:10:40
4096	231	242	88	2025-06-07 12:10:40	2025-06-07 12:10:40
4098	132	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4100	134	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4102	136	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4104	137	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4106	138	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4108	168	242	100	2025-06-07 12:10:40	2025-06-07 12:10:40
4112	222	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4114	232	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4116	171	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4118	179	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4120	94	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4122	95	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4124	96	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4126	98	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4129	103	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4131	80	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4134	82	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4136	83	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4138	84	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4140	87	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4142	89	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4144	90	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4146	91	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4148	92	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4151	233	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4153	105	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4157	108	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4161	111	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4163	112	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4165	116	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4167	118	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4169	121	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4171	144	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4173	146	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4175	150	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4179	192	242	77	2025-06-07 12:10:40	2025-06-07 12:10:40
4182	227	242	77	2025-06-07 12:10:40	2025-06-07 12:10:40
4185	234	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4052	242	174	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4083	242	74	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4085	242	77	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4087	242	130	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4093	242	224	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4091	242	214	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4092	242	176	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4186	176	242	44	2025-06-07 12:10:50	2025-06-07 12:10:50
4095	242	231	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4107	242	168	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4097	242	132	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4099	242	134	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4101	242	136	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4103	242	137	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4105	242	138	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4109	242	189	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4110	189	242	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4113	242	232	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4117	242	179	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4115	242	171	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4150	242	233	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4119	242	94	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4121	242	95	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4123	242	96	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4125	242	98	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4127	242	101	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4128	242	103	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4130	242	80	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4132	242	81	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4133	242	82	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4135	242	83	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4139	242	87	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4141	242	89	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4143	242	90	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4145	242	91	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4147	242	92	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4094	224	242	77	2025-06-07 12:10:40	2025-07-10 21:25:05
4177	242	53	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4152	242	105	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4154	242	106	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4155	242	107	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4156	242	108	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4158	242	109	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4159	242	110	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4160	242	111	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4162	242	112	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4164	242	116	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4166	242	118	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4168	242	121	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4172	242	146	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4174	242	150	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4176	242	151	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4178	242	192	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4180	242	219	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4181	242	227	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4183	242	211	88	2025-06-07 12:10:40	2025-06-07 12:13:03
4184	242	234	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4149	242	216	66	2025-06-07 12:10:40	2025-07-10 19:24:02
4089	242	51	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4111	242	222	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4137	242	84	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4170	242	144	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4057	242	223	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4187	211	242	44	2025-06-07 12:13:03	2025-06-07 12:13:03
4188	54	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4189	165	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4190	197	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4191	204	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4192	212	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4193	230	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4194	235	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4195	243	241	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4196	241	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4197	56	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4198	58	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4199	63	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4200	66	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4201	67	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4202	68	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4203	69	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4204	70	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4205	71	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4206	124	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4207	125	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4208	128	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4209	75	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4210	76	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4211	78	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4212	129	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4213	200	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4214	243	50	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4215	50	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4216	194	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4217	131	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4218	133	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4219	135	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4220	142	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4221	243	237	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4222	237	243	77	2025-06-09 09:23:27	2025-06-09 09:23:27
4223	242	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4224	177	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4225	209	243	77	2025-06-09 09:23:27	2025-06-09 09:23:27
4226	238	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4227	243	210	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4228	210	243	100	2025-06-09 09:23:27	2025-06-09 09:23:27
4229	243	191	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4230	191	243	77	2025-06-09 09:23:27	2025-06-09 09:23:27
4231	196	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4232	97	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4233	99	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4234	79	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4235	85	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4236	86	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4237	88	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4238	93	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4239	226	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4240	243	239	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4241	239	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4242	113	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4243	114	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4244	115	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4245	117	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4246	119	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4247	120	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4248	122	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4249	123	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4250	145	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4251	143	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4252	139	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4253	140	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4254	141	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4255	147	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4256	149	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4257	152	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4258	153	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4259	173	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4260	243	240	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4261	240	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4262	244	54	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4263	54	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4264	244	165	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4265	165	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4266	244	197	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4267	197	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4268	244	204	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4269	204	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4270	244	212	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4271	212	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4272	244	230	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4273	230	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4274	244	235	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4275	235	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4276	244	241	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4277	241	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4278	56	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4279	58	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4280	63	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4281	66	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4282	67	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4283	68	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4284	69	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4285	70	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4286	71	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4287	244	124	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4288	124	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4289	244	125	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4290	125	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4291	244	128	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4292	128	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4293	75	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4294	76	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4295	78	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4296	244	129	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4297	129	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4298	244	200	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4299	200	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4300	244	50	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4301	244	131	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4302	131	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4303	244	133	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4304	133	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4305	244	135	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4306	135	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4307	244	142	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4308	142	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4309	244	237	100	2025-06-10 09:26:16	2025-06-10 09:26:16
4310	237	244	77	2025-06-10 09:26:16	2025-06-10 09:26:16
4311	244	242	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4312	242	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4313	177	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4314	244	195	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4315	244	209	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4316	209	244	77	2025-06-10 09:26:16	2025-06-10 09:26:16
4317	244	238	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4318	238	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4319	244	210	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4320	210	244	100	2025-06-10 09:26:16	2025-06-10 09:26:16
4321	244	191	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4322	191	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4323	244	196	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4324	196	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4325	244	97	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4326	97	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4327	244	99	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4328	99	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4329	244	100	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4330	244	102	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4331	79	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4332	85	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4333	86	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4334	88	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4335	93	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4336	244	226	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4337	226	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4338	244	239	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4339	239	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4340	244	104	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4341	244	113	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4342	113	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4343	244	114	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4344	114	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4345	244	115	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4346	115	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4347	244	117	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4348	117	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4349	244	119	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4350	119	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4351	244	120	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4352	120	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4353	244	122	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4354	122	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4355	244	123	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4356	123	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4357	145	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4358	244	143	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4359	143	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4360	244	139	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4361	139	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4362	244	140	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4363	140	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4364	244	141	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4365	141	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4366	147	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4367	149	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4368	152	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4369	153	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4370	173	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4371	244	240	77	2025-06-10 09:26:16	2025-06-10 09:26:16
4372	240	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4373	54	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4374	165	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4375	197	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4376	204	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4377	212	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4378	230	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4379	235	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4380	241	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4381	56	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4382	58	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4383	63	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4384	66	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4385	67	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4386	68	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4387	69	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4388	70	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4389	71	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4390	124	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4391	125	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4392	128	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4393	75	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4394	76	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4395	78	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4396	129	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4397	200	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4398	131	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4399	133	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4400	135	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4401	142	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4402	246	237	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4403	237	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4404	242	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4405	177	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4406	209	246	77	2025-06-11 10:11:40	2025-06-11 10:11:40
4407	238	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4408	210	246	100	2025-06-11 10:11:40	2025-06-11 10:11:40
4409	191	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4410	196	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4411	97	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4412	99	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4413	79	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4414	85	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4415	86	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4416	88	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4417	93	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4418	226	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4419	246	239	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4420	239	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4421	113	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4422	114	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4423	115	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4424	117	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4425	119	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4426	120	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4427	122	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4428	123	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4429	145	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4430	143	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4431	139	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4432	140	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4433	141	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4434	147	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4435	149	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4436	152	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4437	153	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4438	173	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4439	246	240	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4440	240	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4441	174	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4442	245	193	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4443	193	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4444	245	223	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4445	223	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4446	55	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4447	57	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4448	59	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4449	60	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4450	61	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4451	65	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4452	72	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4453	73	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4454	126	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4455	127	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4456	166	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4457	74	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4458	77	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4459	130	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4460	245	51	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4461	51	245	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4464	245	231	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4465	231	245	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4466	132	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4467	134	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4468	136	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4469	137	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4470	138	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4471	245	168	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4472	168	245	100	2025-06-11 10:12:56	2025-06-11 10:12:56
4473	245	189	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4474	189	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4475	245	222	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4476	222	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4477	245	232	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4478	232	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4479	245	243	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4480	243	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4481	171	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4482	245	179	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4483	179	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4484	94	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4485	95	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4486	96	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4487	98	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4488	103	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4489	80	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4490	82	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4491	83	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4492	84	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4493	87	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4494	89	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4495	90	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4496	91	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4497	92	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4498	245	244	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4499	244	245	77	2025-06-11 10:12:56	2025-06-11 10:12:56
4500	245	233	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4501	233	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4502	105	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4503	108	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4504	111	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4462	245	224	66	2025-06-11 10:12:56	2025-07-10 21:25:04
4505	112	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4506	116	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4507	118	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4508	121	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4509	144	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4510	146	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4511	150	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4512	245	192	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4513	192	245	77	2025-06-11 10:12:56	2025-06-11 10:12:56
4514	245	219	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4515	245	227	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4516	227	245	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4517	245	211	77	2025-06-11 10:12:56	2025-06-11 10:12:56
4518	211	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4519	245	234	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4520	234	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4521	245	246	77	2025-06-11 10:12:56	2025-06-11 10:12:56
4522	246	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4524	174	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4525	247	181	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4527	193	247	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4529	223	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4530	247	55	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4531	55	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4532	247	57	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4533	57	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4535	59	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4537	60	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4539	61	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4540	247	62	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4541	247	64	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4543	65	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4544	247	72	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4545	72	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4546	247	73	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4547	73	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4549	126	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4550	247	127	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4551	127	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4553	166	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4554	247	74	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4555	74	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4557	77	247	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4559	130	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4561	51	247	88	2025-06-23 21:08:34	2025-06-23 21:08:34
4562	247	214	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4567	231	247	88	2025-06-23 21:08:34	2025-06-23 21:08:34
4568	247	132	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4569	132	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4571	134	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4572	247	136	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4573	136	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4575	137	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4577	138	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4579	168	247	100	2025-06-23 21:08:35	2025-06-23 21:08:35
4580	247	189	100	2025-06-23 21:08:35	2025-06-23 21:08:35
4581	189	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4583	222	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4585	232	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4587	243	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4589	171	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4591	179	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4592	247	94	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4593	94	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4594	247	95	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4595	95	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4597	96	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4599	98	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4600	247	101	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4601	247	103	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4602	103	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4603	247	80	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4604	80	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4605	247	81	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4607	82	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4609	83	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4611	84	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4526	247	193	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4528	247	223	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4534	247	59	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4536	247	60	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4538	247	61	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4542	247	65	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4548	247	126	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4552	247	166	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4556	247	77	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4560	247	51	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4563	247	176	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4565	224	247	88	2025-06-23 21:08:34	2025-07-10 21:25:04
4566	247	231	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4570	247	134	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4574	247	137	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4576	247	138	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4578	247	168	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4582	247	222	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4584	247	232	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4586	247	243	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4588	247	171	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4590	247	179	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4596	247	96	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4598	247	98	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4606	247	82	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4608	247	83	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4610	247	84	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4612	247	87	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4613	87	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4614	247	89	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4615	89	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4617	90	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4619	91	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4620	247	92	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4621	92	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4623	244	247	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4625	247	233	100	2025-06-23 21:08:35	2025-06-23 21:08:35
4626	233	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4628	105	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4629	247	106	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4630	247	107	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4632	108	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4633	247	109	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4634	247	110	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4636	111	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4638	112	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4640	116	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4641	247	118	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4642	118	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4643	247	121	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4644	121	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4646	144	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4647	247	146	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4648	146	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4650	150	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4651	247	151	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4654	192	247	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4655	247	219	88	2025-06-23 21:08:35	2025-06-23 21:08:35
4657	227	247	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4660	234	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4662	246	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4663	248	174	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4664	174	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4667	193	248	77	2025-06-27 14:54:02	2025-06-27 14:54:02
4669	223	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4670	248	55	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4671	55	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4672	248	57	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4673	57	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4674	248	59	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4675	59	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4676	248	60	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4677	60	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4678	248	61	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4679	61	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4680	248	62	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4681	248	64	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4682	248	65	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4683	65	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4684	248	72	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4685	72	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4686	248	73	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4687	73	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4689	126	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4691	127	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4693	166	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4694	248	74	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4695	74	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4696	248	77	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4697	77	248	66	2025-06-27 14:54:02	2025-06-27 14:54:02
4699	130	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4701	51	248	88	2025-06-27 14:54:02	2025-06-27 14:54:02
4704	176	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4708	231	248	88	2025-06-27 14:54:03	2025-06-27 14:54:03
4710	132	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4712	134	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4714	136	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4716	137	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4718	138	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4618	247	91	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4622	247	244	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4627	247	105	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4631	247	108	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4635	247	111	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4637	247	112	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4639	247	116	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4645	247	144	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4652	247	53	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4653	247	192	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4656	247	227	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4658	247	211	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4659	247	234	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4661	247	246	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4665	248	181	55	2025-06-27 14:54:02	2025-06-27 19:22:38
4668	248	223	55	2025-06-27 14:54:02	2025-06-27 19:22:41
4700	248	51	55	2025-06-27 14:54:02	2025-06-27 19:22:41
4688	248	126	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4690	248	127	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4692	248	166	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4698	248	130	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4705	248	224	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4702	248	214	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4703	248	176	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4707	248	231	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4624	247	216	77	2025-06-23 21:08:35	2025-07-10 19:24:01
4711	248	134	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4713	248	136	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4715	248	137	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4717	248	138	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4666	248	193	66	2025-06-27 14:54:02	2025-06-27 19:22:41
4706	224	248	88	2025-06-27 14:54:03	2025-07-10 21:25:05
4720	168	248	100	2025-06-27 14:54:03	2025-06-27 14:54:03
4722	189	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4724	222	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4726	232	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4728	243	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4729	248	171	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4730	171	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4732	179	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4734	94	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4736	95	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4738	96	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4740	98	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4743	103	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4744	248	80	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4745	80	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4746	248	81	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4747	248	82	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4748	82	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4749	248	83	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4750	83	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4751	248	84	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4752	84	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4753	248	87	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4754	87	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4755	248	89	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4756	89	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4757	248	90	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4758	90	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4759	248	91	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4760	91	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4761	248	92	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4762	92	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4764	244	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4766	248	233	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4767	233	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4769	105	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4773	108	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4777	111	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4779	112	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4781	116	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4783	118	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4785	121	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4786	248	144	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4787	144	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4788	248	146	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4789	146	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4790	248	150	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4791	150	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4792	248	151	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4795	192	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4798	227	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4801	234	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4803	246	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4523	247	174	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4558	247	130	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4616	247	90	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4649	247	150	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4709	248	132	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4731	248	179	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4721	248	189	77	2025-06-27 14:54:03	2025-06-27 19:22:38
4763	248	244	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4800	248	234	66	2025-06-27 14:54:03	2025-06-27 19:22:41
4733	248	94	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4735	248	95	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4737	248	96	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4739	248	98	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4741	248	101	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4742	248	103	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4802	248	246	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4768	248	105	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4770	248	106	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4771	248	107	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4772	248	108	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4774	248	109	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4775	248	110	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4776	248	111	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4778	248	112	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4780	248	116	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4782	248	118	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4784	248	121	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4793	248	53	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4796	248	219	55	2025-06-27 14:54:03	2025-06-27 19:22:38
4804	211	248	44	2025-06-27 19:22:38	2025-06-27 19:22:38
4719	248	168	44	2025-06-27 14:54:03	2025-06-27 19:22:41
4723	248	222	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4725	248	232	66	2025-06-27 14:54:03	2025-06-27 19:22:41
4727	248	243	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4794	248	192	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4797	248	227	66	2025-06-27 14:54:03	2025-06-27 19:22:41
4799	248	211	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4806	174	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4809	193	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4811	223	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4813	55	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4815	57	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4817	59	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4807	249	181	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4808	249	193	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4810	249	223	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4812	249	55	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4814	249	57	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4816	249	59	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4818	249	60	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4765	248	216	55	2025-06-27 14:54:03	2025-07-10 19:24:02
4819	60	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4821	61	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4825	65	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4827	72	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4829	73	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4831	126	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4833	127	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4835	166	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4837	74	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4839	77	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4841	130	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4843	51	249	88	2025-06-28 13:19:22	2025-06-28 13:19:22
4849	231	249	88	2025-06-28 13:19:22	2025-06-28 13:19:22
4851	132	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4853	134	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4855	136	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4857	137	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4859	138	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4861	168	249	100	2025-06-28 13:19:22	2025-06-28 13:19:22
4862	249	189	100	2025-06-28 13:19:22	2025-06-28 13:19:22
4865	222	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4867	232	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4869	243	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4871	171	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4873	179	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4875	94	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4877	95	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4879	96	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4881	98	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4884	103	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4886	80	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4889	82	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4891	83	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4893	84	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4895	87	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4897	89	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4899	90	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4901	91	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4903	92	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4905	244	249	77	2025-06-28 13:19:22	2025-06-28 13:19:22
4908	233	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4910	105	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4914	108	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4918	111	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4920	112	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4922	116	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4924	118	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4822	249	62	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4823	249	64	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4824	249	65	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4826	249	72	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4828	249	73	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4830	249	126	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4832	249	127	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4834	249	166	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4836	249	74	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4840	249	130	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4842	249	51	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4844	249	214	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4845	249	176	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4847	224	249	88	2025-06-28 13:19:22	2025-07-10 21:25:05
4848	249	231	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4850	249	132	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4852	249	134	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4854	249	136	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4856	249	137	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4858	249	138	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4860	249	168	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4863	189	249	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4864	249	222	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4866	249	232	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4868	249	243	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4870	249	171	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4872	249	179	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4876	249	95	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4878	249	96	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4880	249	98	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4882	249	101	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4883	249	103	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4885	249	80	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4887	249	81	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4888	249	82	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4890	249	83	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4892	249	84	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4894	249	87	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4896	249	89	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4898	249	90	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4900	249	91	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4902	249	92	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4904	249	244	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4846	249	224	77	2025-06-28 13:19:22	2025-07-10 21:12:01
4907	249	233	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4911	249	106	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4912	249	107	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4913	249	108	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4915	249	109	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4916	249	110	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4917	249	111	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4919	249	112	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4921	249	116	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4923	249	118	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4925	249	121	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4906	249	216	77	2025-06-28 13:19:22	2025-07-10 19:24:02
4926	121	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4928	144	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4930	146	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4932	150	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4934	249	53	77	2025-06-28 13:19:22	2025-06-28 13:19:22
4935	249	192	100	2025-06-28 13:19:22	2025-06-28 13:19:22
4939	227	249	77	2025-06-28 13:19:22	2025-06-28 13:19:22
4942	234	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4944	246	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4805	249	174	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4820	249	61	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4838	249	77	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4945	176	249	44	2025-06-28 13:19:35	2025-06-28 13:19:35
4874	249	94	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4909	249	105	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4927	249	144	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4929	249	146	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4931	249	150	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4933	249	151	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4936	192	249	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4937	249	219	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4938	249	227	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4940	249	211	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4941	249	234	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4943	249	246	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4946	174	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4947	250	181	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4948	250	193	77	2025-07-09 07:19:01	2025-07-09 07:19:01
4949	193	250	77	2025-07-09 07:19:01	2025-07-09 07:19:01
4950	250	223	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4951	223	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4952	55	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4953	57	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4954	59	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4955	60	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4956	61	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4957	65	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4958	72	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4959	73	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4960	250	126	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4961	126	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4962	250	127	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4963	127	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4964	250	166	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4965	166	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4966	74	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4967	77	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4968	250	130	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4969	130	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4970	250	51	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4971	51	250	88	2025-07-09 07:19:01	2025-07-09 07:19:01
4972	250	214	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4973	250	176	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4974	176	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4977	250	231	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4978	231	250	88	2025-07-09 07:19:01	2025-07-09 07:19:01
4979	250	132	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4980	132	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4981	250	134	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4982	134	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4983	250	136	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4984	136	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4985	250	137	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4986	137	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4987	250	138	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4988	138	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4989	250	168	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4990	168	250	100	2025-07-09 07:19:01	2025-07-09 07:19:01
4991	250	189	77	2025-07-09 07:19:01	2025-07-09 07:19:01
4992	189	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4993	250	222	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4994	222	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4995	250	232	88	2025-07-09 07:19:01	2025-07-09 07:19:01
4996	232	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4997	250	243	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4998	243	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4999	171	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5000	250	179	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5001	179	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5002	250	94	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5003	94	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5004	250	95	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5005	95	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5006	250	96	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5007	96	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5008	250	98	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5009	98	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5010	250	101	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5011	250	103	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5012	103	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5013	80	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5014	82	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5015	83	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5016	84	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5017	87	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5018	89	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5019	90	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5020	91	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5021	92	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5022	250	244	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5023	244	250	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5024	250	233	88	2025-07-09 07:19:01	2025-07-09 07:19:01
5025	233	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5026	250	105	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4975	250	224	66	2025-07-09 07:19:01	2025-07-10 21:25:04
5027	105	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5028	250	106	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5029	250	107	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5030	250	108	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5031	108	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5032	250	109	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5033	250	110	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5034	250	111	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5035	111	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5036	250	112	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5037	112	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5038	250	116	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5039	116	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5040	250	118	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5041	118	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5042	250	121	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5043	121	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5044	144	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5045	146	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5046	150	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5047	250	53	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5048	250	192	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5049	192	250	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5050	250	219	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5051	250	227	88	2025-07-09 07:19:01	2025-07-09 07:19:01
5052	227	250	88	2025-07-09 07:19:01	2025-07-09 07:19:01
5053	250	211	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5054	211	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5055	250	234	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5056	234	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5057	250	246	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5058	246	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5059	251	174	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5060	174	251	55	2025-07-09 10:45:09	2025-07-09 10:45:09
5061	251	181	77	2025-07-09 10:45:09	2025-07-09 10:45:09
5062	251	193	100	2025-07-09 10:45:09	2025-07-09 10:45:09
5063	193	251	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5064	251	223	100	2025-07-09 10:45:09	2025-07-09 10:45:09
5065	223	251	55	2025-07-09 10:45:09	2025-07-09 10:45:09
5066	251	55	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5067	55	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5068	251	57	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5069	57	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5070	251	59	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5071	59	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5072	251	60	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5073	60	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5074	251	61	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5075	61	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5076	251	62	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5077	251	64	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5078	251	65	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5079	65	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5080	251	72	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5081	72	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5082	251	73	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5083	73	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5084	251	126	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5085	126	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5086	251	127	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5087	127	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5088	251	166	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5089	166	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5090	251	74	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5091	74	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5092	251	77	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5093	77	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5094	251	130	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5095	130	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5096	251	51	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5097	51	251	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5098	251	214	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5099	251	176	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5102	251	231	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5103	231	251	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5104	251	132	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5105	132	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5106	251	134	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5107	134	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5108	251	136	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5109	136	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5110	251	137	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5111	137	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5112	251	138	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5113	138	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5114	251	168	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5115	168	251	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5116	251	189	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5117	189	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5118	251	222	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5119	222	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5120	251	232	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5121	232	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5122	251	243	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5123	243	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5124	251	171	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5125	171	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5126	251	179	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5127	179	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5128	251	94	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5129	94	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5130	251	95	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5131	95	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5132	251	96	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5133	96	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5101	224	251	88	2025-07-09 10:45:10	2025-07-10 21:25:04
5134	251	98	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5135	98	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5136	251	101	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5137	251	103	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5138	103	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5139	251	80	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5140	80	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5141	251	81	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5142	251	82	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5143	82	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5144	251	83	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5145	83	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5146	251	84	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5147	84	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5148	251	87	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5149	87	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5150	251	89	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5151	89	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5152	251	90	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5153	90	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5154	251	91	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5155	91	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5156	251	92	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5157	92	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5158	251	244	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5159	244	251	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5161	251	233	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5162	233	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5163	251	105	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5164	105	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5165	251	106	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5166	251	107	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5167	251	108	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5168	108	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5169	251	109	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5170	251	110	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5171	251	111	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5172	111	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5173	251	112	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5174	112	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5175	251	116	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5176	116	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5177	251	118	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5178	118	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5179	251	121	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5180	121	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5181	251	144	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5182	144	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5183	251	146	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5184	146	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5185	251	150	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5186	150	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5187	251	151	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5188	251	53	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5189	251	192	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5190	192	251	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5191	251	219	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5192	251	227	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5193	227	251	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5194	251	211	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5195	251	234	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5196	234	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5197	251	246	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5198	246	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5199	252	174	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5200	174	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5201	252	181	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5202	252	193	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5203	193	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5204	252	223	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5205	223	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5206	252	55	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5207	55	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5208	252	57	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5209	57	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5210	252	59	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5211	59	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5212	252	60	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5213	60	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5214	252	61	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5215	61	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5216	252	62	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5217	252	64	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5218	252	65	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5219	65	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5220	252	72	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5221	72	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5222	252	73	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5223	73	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5224	252	126	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5225	126	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5226	252	127	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5227	127	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5228	252	166	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5229	166	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5230	252	74	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5231	74	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5232	252	77	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5233	77	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5234	252	130	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5235	130	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5236	252	51	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5237	51	252	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5238	252	214	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5239	252	176	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5240	252	224	88	2025-07-10 06:23:58	2025-07-10 21:12:01
5242	252	231	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5243	231	252	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5244	252	132	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5245	132	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5246	252	134	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5247	134	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5248	252	136	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5249	136	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5250	252	137	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5251	137	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5252	252	138	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5253	138	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5254	252	168	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5255	168	252	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5256	252	189	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5257	189	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5258	252	222	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5259	222	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5260	252	232	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5261	232	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5262	252	243	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5263	243	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5264	252	171	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5265	171	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5266	252	179	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5267	179	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5268	252	94	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5269	94	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5270	252	95	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5271	95	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5272	252	96	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5273	96	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5274	252	98	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5275	98	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5276	252	101	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5277	252	103	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5278	103	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5279	252	80	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5280	80	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5281	252	81	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5282	252	82	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5283	82	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5284	252	83	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5285	83	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5286	252	84	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5287	84	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5288	252	87	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5289	87	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5290	252	89	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5291	89	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5292	252	90	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5293	90	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5294	252	91	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5295	91	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5296	252	92	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5297	92	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5298	252	244	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5299	244	252	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5301	252	233	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5302	233	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5303	252	105	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5304	105	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5305	252	106	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5306	252	107	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5307	252	108	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5308	108	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5309	252	109	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5310	252	110	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5311	252	111	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5312	111	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5313	252	112	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5314	112	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5315	252	116	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5316	116	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5317	252	118	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5318	118	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5319	252	121	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5320	121	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5321	252	144	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5322	144	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5323	252	146	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5324	146	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5325	252	150	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5326	150	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5327	252	151	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5328	252	53	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5329	252	192	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5330	192	252	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5331	252	219	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5332	252	227	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5333	227	252	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5334	252	211	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5335	252	234	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5336	234	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5337	252	246	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5338	246	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5340	174	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5345	223	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5347	55	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5241	224	252	88	2025-07-10 06:23:58	2025-07-10 21:25:05
5341	253	181	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5346	253	55	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5300	252	216	88	2025-07-10 06:23:58	2025-07-10 19:24:02
5342	253	193	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5344	253	223	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5343	193	253	66	2025-07-10 15:13:36	2025-07-10 19:41:22
5349	57	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5351	59	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5353	60	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5355	61	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5359	65	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5361	72	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5363	73	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5365	126	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5367	127	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5369	166	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5371	74	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5373	77	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5375	130	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5377	51	253	88	2025-07-10 15:13:36	2025-07-10 15:13:36
5381	224	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5383	231	253	88	2025-07-10 15:13:36	2025-07-10 15:13:36
5385	132	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5387	134	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5389	136	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5391	137	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5393	138	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5395	168	253	100	2025-07-10 15:13:36	2025-07-10 15:13:36
5399	222	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5405	171	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5407	179	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5409	94	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5411	95	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5413	96	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5415	98	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5418	103	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5420	80	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5423	82	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5425	83	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5427	84	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5429	87	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5431	89	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5433	90	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5435	91	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5437	92	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5444	105	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5448	108	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5452	111	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5454	112	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5352	253	60	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5354	253	61	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5358	253	65	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5357	253	64	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5360	253	72	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5364	253	126	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5362	253	73	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5370	253	74	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5368	253	166	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5372	253	77	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5376	253	51	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5374	253	130	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5378	253	214	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5379	253	176	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5380	253	224	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5382	253	231	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5403	243	253	55	2025-07-10 15:13:36	2025-07-10 19:47:16
5386	253	134	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5388	253	136	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5390	253	137	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5394	253	168	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5392	253	138	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5396	253	189	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5397	189	253	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5400	253	232	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5406	253	179	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5404	253	171	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5408	253	94	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5412	253	96	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5410	253	95	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5416	253	101	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5414	253	98	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5422	253	82	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5417	253	103	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5419	253	80	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5421	253	81	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5428	253	87	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5424	253	83	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5426	253	84	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5432	253	90	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5430	253	89	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5436	253	92	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5434	253	91	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5441	253	233	44	2025-07-10 15:13:36	2025-07-10 19:42:44
5442	233	253	44	2025-07-10 15:13:36	2025-07-11 07:40:37
5443	253	105	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5445	253	106	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5447	253	108	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5449	253	109	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5451	253	111	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5446	253	107	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5450	253	110	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5453	253	112	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5356	253	62	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5350	253	59	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5398	253	222	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5439	244	253	77	2025-07-10 15:13:36	2025-07-10 19:47:16
5401	232	253	55	2025-07-10 15:13:36	2025-07-11 07:40:37
5440	253	216	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5384	253	132	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5456	116	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5458	118	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5460	121	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5462	144	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5464	146	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5466	150	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5479	176	253	44	2025-07-10 15:14:05	2025-07-10 15:14:05
5402	253	243	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5530	133	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5467	253	151	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5438	253	244	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5471	253	219	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5457	253	118	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5459	253	121	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5468	253	53	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5515	211	253	44	2025-07-10 19:46:17	2025-07-11 07:40:47
5463	253	146	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5470	192	253	88	2025-07-10 15:13:36	2025-07-10 19:42:14
5472	253	227	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5474	253	211	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5480	54	216	44	2025-07-10 19:24:01	2025-07-10 19:24:01
5481	165	216	44	2025-07-10 19:24:01	2025-07-10 19:24:01
5482	216	241	44	2025-07-10 19:24:01	2025-07-10 19:24:01
5483	245	216	66	2025-07-10 19:24:01	2025-07-10 19:24:01
5484	250	216	66	2025-07-10 19:24:01	2025-07-10 19:24:01
5485	56	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5486	66	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5487	67	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
2063	216	68	66	2025-06-03 08:40:56	2025-07-10 19:24:02
5488	71	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5489	124	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5490	125	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5491	78	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5492	129	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5493	200	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5160	251	216	88	2025-07-09 10:45:10	2025-07-10 19:24:02
5494	131	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5495	133	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
2087	216	142	55	2025-06-03 08:40:57	2025-07-10 19:24:02
5496	142	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5497	216	237	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5498	216	242	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5499	177	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5500	216	238	55	2025-07-10 19:24:02	2025-07-10 19:24:02
5501	79	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5502	85	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5503	88	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5504	93	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5505	216	239	55	2025-07-10 19:24:02	2025-07-10 19:24:02
5506	114	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5507	115	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5508	117	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
2122	216	122	55	2025-06-03 08:40:57	2025-07-10 19:24:02
5509	122	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5510	139	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5511	149	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5512	152	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5513	153	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5514	216	240	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5339	253	174	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5478	246	253	55	2025-07-10 15:13:36	2025-07-11 07:40:37
5465	253	150	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5455	253	116	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5461	253	144	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5516	54	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5517	165	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
4463	224	245	88	2025-06-11 10:12:56	2025-07-10 21:12:01
4564	247	224	77	2025-06-23 21:08:34	2025-07-10 21:12:01
5518	56	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5519	66	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5348	253	57	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5366	253	127	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5475	253	234	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5520	67	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5469	253	192	44	2025-07-10 15:13:36	2025-07-10 19:42:44
5521	71	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5477	253	246	44	2025-07-10 15:13:36	2025-07-10 19:42:44
5531	142	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5532	177	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5533	79	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5534	85	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5522	124	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5523	125	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5535	88	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5524	78	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5525	129	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5536	93	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5537	114	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5476	234	253	66	2025-07-10 15:13:36	2025-07-10 19:47:16
5526	200	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5527	50	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5528	194	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5100	251	224	88	2025-07-09 10:45:10	2025-07-10 21:12:01
5529	131	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5538	115	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5539	117	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5540	122	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
2412	143	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
5541	139	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5542	149	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5543	152	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5544	153	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
4976	224	250	88	2025-07-09 07:19:01	2025-07-10 21:25:04
2371	224	142	66	2025-06-04 08:00:13	2025-07-10 21:25:05
5473	227	253	77	2025-07-10 15:13:36	2025-07-11 07:40:37
5546	174	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5549	193	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5551	223	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5553	55	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5555	57	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5557	59	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5559	60	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5561	61	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5565	65	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5567	72	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5569	73	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5571	126	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5573	127	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5575	166	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5577	74	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5579	77	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5581	130	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5583	51	254	88	2025-07-11 11:30:36	2025-07-11 11:30:36
5587	231	254	88	2025-07-11 11:30:36	2025-07-11 11:30:36
5589	132	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5591	134	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5593	136	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5595	137	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5597	138	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5599	224	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5601	168	254	100	2025-07-11 11:30:36	2025-07-11 11:30:36
5603	189	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5605	222	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5607	232	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5609	243	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5611	171	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5613	179	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5615	94	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5617	95	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5619	96	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5621	98	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5624	103	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5626	80	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5629	82	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5631	83	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5633	84	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5635	87	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5637	89	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5639	90	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5641	91	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5643	92	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5645	244	254	77	2025-07-11 11:30:36	2025-07-11 11:30:36
5648	233	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5650	105	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5548	254	193	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5550	254	223	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5552	254	55	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5554	254	57	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5556	254	59	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5558	254	60	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5560	254	61	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5562	254	62	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5563	254	64	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5566	254	72	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5568	254	73	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5570	254	126	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5572	254	127	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5574	254	166	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5576	254	74	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5578	254	77	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5580	254	130	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5582	254	51	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5584	254	214	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5585	254	176	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5586	254	231	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5588	254	132	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5590	254	134	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5592	254	136	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5594	254	137	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5596	254	138	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5598	254	224	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5602	254	189	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5604	254	222	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5606	254	232	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5608	254	243	77	2025-07-11 11:30:36	2025-07-11 11:30:56
5610	254	171	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5612	254	179	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5614	254	94	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5616	254	95	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5618	254	96	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5620	254	98	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5622	254	101	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5623	254	103	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5625	254	80	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5627	254	81	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5628	254	82	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5630	254	83	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5632	254	84	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5634	254	87	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5638	254	90	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5640	254	91	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5642	254	92	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5644	254	244	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5646	254	216	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5647	254	233	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5649	254	105	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5651	254	106	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5652	254	107	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5654	108	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5658	111	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5660	112	254	66	2025-07-11 11:30:37	2025-07-11 11:30:37
5662	116	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5664	118	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5666	121	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5668	144	254	55	2025-07-11 11:30:37	2025-07-11 11:30:37
5670	146	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5672	150	254	55	2025-07-11 11:30:37	2025-07-11 11:30:37
5674	254	53	77	2025-07-11 11:30:37	2025-07-11 11:30:37
5676	192	254	77	2025-07-11 11:30:37	2025-07-11 11:30:37
5679	227	254	77	2025-07-11 11:30:37	2025-07-11 11:30:37
5682	234	254	66	2025-07-11 11:30:37	2025-07-11 11:30:37
5684	246	254	55	2025-07-11 11:30:37	2025-07-11 11:30:37
5545	254	174	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5547	254	181	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5564	254	65	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5600	254	168	77	2025-07-11 11:30:36	2025-07-11 11:30:56
5636	254	89	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5653	254	108	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5655	254	109	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5656	254	110	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5657	254	111	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5659	254	112	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5661	254	116	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5663	254	118	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5665	254	121	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5667	254	144	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5669	254	146	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5671	254	150	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5673	254	151	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5675	254	192	88	2025-07-11 11:30:37	2025-07-11 11:30:57
5677	254	219	77	2025-07-11 11:30:37	2025-07-11 11:30:57
5678	254	227	88	2025-07-11 11:30:37	2025-07-11 11:30:57
5680	254	211	77	2025-07-11 11:30:37	2025-07-11 11:30:57
5681	254	234	88	2025-07-11 11:30:37	2025-07-11 11:30:57
5683	254	246	77	2025-07-11 11:30:37	2025-07-11 11:30:57
5685	255	174	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5686	174	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5687	255	181	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5688	255	193	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5689	193	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5690	255	223	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5691	223	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5692	255	55	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5693	55	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5694	255	57	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5695	57	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5696	255	59	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5697	59	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5698	255	60	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5699	60	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5700	255	61	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5701	61	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5702	255	62	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5703	255	64	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5704	255	65	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5705	65	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5706	255	72	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5707	72	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5708	255	73	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5709	73	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5710	255	126	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5711	126	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5712	255	127	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5713	127	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5714	255	166	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5715	166	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5716	255	74	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5717	74	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5718	255	77	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5719	77	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5720	255	130	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5721	130	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5722	255	51	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5723	51	255	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5724	255	214	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5725	255	176	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5726	255	231	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5727	231	255	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5728	255	132	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5729	132	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5730	255	134	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5731	134	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5732	255	136	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5733	136	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5734	255	137	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5735	137	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5736	255	138	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5737	138	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5738	255	224	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5739	224	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5740	255	168	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5741	168	255	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5742	255	189	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5743	189	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5744	255	222	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5745	222	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5746	255	232	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5747	232	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5748	255	243	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5749	243	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5750	255	171	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5751	171	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5752	255	179	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5753	179	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5754	255	94	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5755	94	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5756	255	95	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5757	95	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5758	255	96	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5759	96	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5760	255	98	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5761	98	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5762	255	101	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5763	255	103	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5764	103	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5765	255	80	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5766	80	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5767	255	81	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5768	255	82	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5769	82	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5770	255	83	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5771	83	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5772	255	84	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5773	84	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5774	255	87	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5775	87	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5776	255	89	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5777	89	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5778	255	90	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5779	90	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5780	255	91	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5781	91	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5782	255	92	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5783	92	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5784	255	244	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5785	244	255	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5786	255	216	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5787	255	233	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5788	233	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5789	255	105	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5790	105	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5791	255	106	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5792	255	107	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5793	255	108	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5794	108	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5795	255	109	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5796	255	110	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5797	255	111	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5798	111	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5799	255	112	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5800	112	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5801	255	116	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5802	116	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5803	255	118	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5804	118	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5805	255	121	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5806	121	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5807	255	144	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5808	144	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5809	255	146	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5810	146	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5811	255	150	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5812	150	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5813	255	151	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5814	255	53	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5815	255	192	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5816	192	255	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5817	255	219	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5818	255	227	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5819	227	255	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5820	255	211	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5821	255	234	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5822	234	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5823	255	246	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5824	246	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5825	258	174	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5826	174	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5827	258	181	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5828	258	193	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5829	193	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5830	258	223	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5831	223	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5832	258	55	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5833	55	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5834	258	57	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5835	57	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5836	258	59	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5837	59	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5838	258	60	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5839	60	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5840	258	61	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5841	61	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5842	258	62	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5843	258	64	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5844	258	65	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5845	65	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5846	258	72	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5847	72	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5848	258	73	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5849	73	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5850	258	126	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5851	126	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5852	258	127	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5853	127	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5854	258	166	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5855	166	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5856	258	74	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5857	74	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5858	258	77	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5859	77	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5860	258	130	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5861	130	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5862	258	51	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5863	51	258	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5864	258	214	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5865	258	176	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5866	258	231	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5867	231	258	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5868	258	132	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5869	132	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5870	258	134	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5871	134	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5872	258	136	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5873	136	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5874	258	137	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5875	137	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5876	258	138	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5877	138	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5878	258	224	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5879	224	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5880	258	168	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5881	168	258	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5882	258	189	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5883	189	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5884	258	222	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5885	222	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5886	258	232	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5887	232	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5888	258	243	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5889	243	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5890	258	171	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5891	171	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5892	258	179	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5893	179	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5894	258	94	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5895	94	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5896	258	95	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5897	95	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5898	258	96	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5899	96	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5900	258	98	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5901	98	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5902	258	101	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5903	258	103	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5904	103	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5905	258	80	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5906	80	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5907	258	81	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5908	258	82	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5909	82	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5910	258	83	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5911	83	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5912	258	84	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5913	84	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5914	258	87	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5915	87	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5916	258	89	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5917	89	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5918	258	90	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5919	90	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5920	258	91	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5921	91	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5922	258	92	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5923	92	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5924	258	244	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5925	244	258	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5926	258	216	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5927	258	233	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5928	233	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5929	258	105	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5930	105	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5931	258	106	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5932	258	107	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5933	258	108	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5934	108	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5935	258	109	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5936	258	110	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5937	258	111	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5938	111	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5939	258	112	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5940	112	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5941	258	116	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5942	116	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5943	258	118	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5944	118	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5945	258	121	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5946	121	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5947	258	144	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5948	144	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5949	258	146	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5950	146	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5951	258	150	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5952	150	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5953	258	151	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5954	258	53	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5955	258	192	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5956	192	258	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5957	258	219	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5958	258	227	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5959	227	258	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5960	258	211	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5961	258	234	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5962	234	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5963	258	246	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5964	246	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5965	261	54	77	2025-07-11 15:13:13	2025-07-11 15:13:13
5966	54	261	44	2025-07-11 15:13:13	2025-07-11 15:13:13
5967	261	165	77	2025-07-11 15:13:13	2025-07-11 15:13:13
5968	165	261	44	2025-07-11 15:13:13	2025-07-11 15:13:13
5969	261	197	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5970	197	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5971	261	204	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5972	204	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5973	261	212	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5974	212	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5975	261	230	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5976	230	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5977	261	235	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5978	235	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5979	261	241	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5980	241	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5981	261	245	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5982	245	261	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5983	261	247	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5984	247	261	77	2025-07-11 15:13:13	2025-07-11 15:13:13
5985	261	250	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5986	250	261	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5987	261	255	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5988	255	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5989	261	56	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5990	56	261	44	2025-07-11 15:13:13	2025-07-11 15:13:13
5991	261	58	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5992	58	261	55	2025-07-11 15:13:13	2025-07-11 15:13:13
5993	261	63	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5994	63	261	55	2025-07-11 15:13:13	2025-07-11 15:13:13
5995	261	66	66	2025-07-11 15:13:14	2025-07-11 15:13:14
5996	66	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
5997	261	67	66	2025-07-11 15:13:14	2025-07-11 15:13:14
5998	67	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
5999	261	68	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6000	68	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6001	261	69	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6002	69	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6003	261	70	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6004	70	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6005	261	71	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6006	71	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6007	261	124	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6008	124	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6009	261	125	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6010	125	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6011	261	128	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6012	128	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6013	261	75	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6014	75	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6015	261	76	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6016	76	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6017	261	78	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6018	78	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6019	261	129	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6020	129	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6021	261	200	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6022	200	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6023	261	50	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6024	261	194	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6025	261	251	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6026	251	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6027	261	131	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6028	131	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6029	261	133	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6030	133	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6031	261	135	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6032	135	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6033	261	142	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6034	142	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6035	261	237	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6036	237	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6037	261	258	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6038	258	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6039	261	242	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6040	242	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6041	261	248	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6042	248	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6043	261	177	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6044	177	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6045	261	195	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6046	261	202	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6047	261	209	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6048	209	261	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6049	261	215	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6050	261	238	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6051	238	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6052	261	249	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6053	249	261	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6054	261	252	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6055	252	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6056	261	210	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6057	210	261	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6058	261	191	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6059	191	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6060	261	196	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6061	196	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6062	261	97	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6063	97	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6064	261	99	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6065	99	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6066	261	100	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6067	261	102	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6068	261	79	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6069	79	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6070	261	85	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6071	85	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6072	261	86	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6073	86	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6074	261	88	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6075	88	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6076	261	93	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6077	93	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6078	261	253	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6079	261	226	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6080	226	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6081	261	239	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6082	239	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6083	261	104	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6084	261	113	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6085	113	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6086	261	114	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6087	114	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6088	261	115	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6089	115	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6090	261	117	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6091	117	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6092	261	119	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6093	119	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6094	261	120	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6095	120	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6096	261	122	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6097	122	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6098	261	123	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6099	123	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6100	261	145	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6101	145	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6102	261	143	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6103	143	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6104	261	139	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6105	139	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6106	261	140	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6107	140	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6108	261	141	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6109	141	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6110	261	147	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6111	147	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6112	261	148	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6113	261	149	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6114	149	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6115	261	152	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6116	152	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6117	261	153	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6118	153	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6119	261	173	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6120	173	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6121	261	240	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6122	240	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6123	261	254	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6124	254	261	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6126	54	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6127	260	165	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6128	165	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6129	260	197	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6130	197	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6131	260	204	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6132	204	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6133	260	212	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6134	212	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6135	260	230	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6136	230	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6137	260	235	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6138	235	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6139	260	241	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6140	241	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6143	260	247	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6144	247	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6147	260	255	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6148	255	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6150	56	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6152	58	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6154	63	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6156	66	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6158	67	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6160	68	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6162	69	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6164	70	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6166	71	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6168	124	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6170	125	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6172	128	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6174	75	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6176	76	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6178	78	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6180	129	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6181	260	200	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6142	245	260	77	2025-07-12 05:20:49	2025-07-12 08:53:47
6145	260	250	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6146	250	260	77	2025-07-12 05:20:49	2025-07-12 08:53:47
6149	260	56	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6151	260	58	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6153	260	63	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6155	260	66	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6157	260	67	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6161	260	69	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6163	260	70	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6165	260	71	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6167	260	124	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6169	260	125	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6171	260	128	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6173	260	75	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6175	260	76	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6177	260	78	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6179	260	129	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6141	260	245	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6182	200	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6183	260	50	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6185	260	251	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6186	251	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6188	131	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6190	133	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6192	135	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6194	142	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6196	237	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6197	260	258	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6198	258	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6200	242	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6201	260	248	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6202	248	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6203	260	177	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6204	177	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6207	260	209	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6208	209	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6210	260	238	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6211	238	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6212	260	249	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6213	249	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6214	260	252	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6215	252	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6216	260	210	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6217	210	260	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6218	260	191	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6220	260	196	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6221	196	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6223	97	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6225	99	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6229	79	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6231	85	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6233	86	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6235	88	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6237	93	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6239	260	226	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6240	226	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6242	239	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6245	113	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6247	114	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6249	115	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6251	117	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6253	119	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6255	120	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6257	122	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6259	123	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6261	145	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6263	143	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6265	139	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6267	140	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6269	141	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6271	147	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6274	149	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6276	152	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6278	153	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6279	260	173	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6280	173	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6281	260	240	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6283	260	254	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6284	254	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6286	174	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6287	262	181	77	2025-07-12 05:37:03	2025-07-12 05:37:03
6288	262	193	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6184	260	194	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6187	260	131	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6189	260	133	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6191	260	135	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6193	260	142	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6195	260	237	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6199	260	242	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6205	260	195	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6270	260	147	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6219	191	260	77	2025-07-12 05:20:49	2025-07-12 08:53:48
6222	260	97	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6224	260	99	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6226	260	100	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6227	260	102	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6228	260	79	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6230	260	85	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6232	260	86	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6234	260	88	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6236	260	93	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6238	260	253	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6241	260	239	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6243	260	104	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6244	260	113	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6246	260	114	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6248	260	115	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6250	260	117	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6254	260	120	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6256	260	122	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6258	260	123	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6260	260	145	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6262	260	143	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6264	260	139	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6266	260	140	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6268	260	141	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6273	260	149	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6272	260	148	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6275	260	152	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6277	260	153	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6282	240	260	66	2025-07-12 05:20:49	2025-07-12 08:53:48
6209	260	215	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6289	193	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6291	223	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6293	55	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6295	57	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6297	59	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6299	60	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6301	61	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6305	65	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6307	72	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6309	73	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6311	126	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6313	127	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6315	166	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6317	74	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6319	77	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6321	130	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6323	51	262	88	2025-07-12 05:37:03	2025-07-12 05:37:03
6327	231	262	88	2025-07-12 05:37:03	2025-07-12 05:37:03
6329	132	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6331	134	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6333	136	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6335	137	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6337	138	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6339	224	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6341	168	262	100	2025-07-12 05:37:03	2025-07-12 05:37:03
6342	262	189	100	2025-07-12 05:37:03	2025-07-12 05:37:03
6345	222	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6347	232	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6349	243	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6351	261	262	88	2025-07-12 05:37:03	2025-07-12 05:37:03
6353	171	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6355	179	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6357	94	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6359	95	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6361	96	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6363	98	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6366	103	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6368	80	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6371	82	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6373	83	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6375	84	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6377	87	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6379	89	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6381	90	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6383	91	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6385	92	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6387	244	262	77	2025-07-12 05:37:04	2025-07-12 05:37:04
6389	260	262	88	2025-07-12 05:37:04	2025-07-12 05:37:04
6392	233	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6394	105	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6292	262	55	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6294	262	57	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6296	262	59	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6298	262	60	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6300	262	61	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6302	262	62	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6303	262	64	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6304	262	65	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6306	262	72	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6310	262	126	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6312	262	127	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6314	262	166	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6316	262	74	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6318	262	77	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6320	262	130	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6322	262	51	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6324	262	214	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6325	262	176	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6326	262	231	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6328	262	132	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6330	262	134	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6332	262	136	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6334	262	137	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6336	262	138	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6338	262	224	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6340	262	168	77	2025-07-12 05:37:03	2025-07-12 05:37:15
6343	189	262	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6346	262	232	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6348	262	243	77	2025-07-12 05:37:03	2025-07-12 05:37:15
6350	262	261	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6352	262	171	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6354	262	179	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6356	262	94	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6358	262	95	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6360	262	96	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6362	262	98	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6364	262	101	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6365	262	103	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6367	262	80	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6369	262	81	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6370	262	82	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6372	262	83	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6374	262	84	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6376	262	87	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6378	262	89	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6382	262	91	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6384	262	92	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6386	262	244	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6390	262	216	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6391	262	233	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6393	262	105	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6395	262	106	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6388	262	260	77	2025-07-12 05:37:04	2025-07-12 08:53:48
6398	108	262	66	2025-07-12 05:37:04	2025-07-12 05:37:04
6402	111	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6404	112	262	66	2025-07-12 05:37:04	2025-07-12 05:37:04
6406	116	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6408	118	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6410	121	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6412	144	262	55	2025-07-12 05:37:04	2025-07-12 05:37:04
6414	146	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6416	150	262	55	2025-07-12 05:37:04	2025-07-12 05:37:04
6419	262	192	100	2025-07-12 05:37:04	2025-07-12 05:37:04
6423	227	262	77	2025-07-12 05:37:04	2025-07-12 05:37:04
6426	234	262	66	2025-07-12 05:37:04	2025-07-12 05:37:04
6428	246	262	55	2025-07-12 05:37:04	2025-07-12 05:37:04
6285	262	174	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6290	262	223	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6308	262	73	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6429	176	262	44	2025-07-12 05:37:15	2025-07-12 05:37:15
6344	262	222	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6380	262	90	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6396	262	107	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6397	262	108	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6399	262	109	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6400	262	110	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6401	262	111	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6403	262	112	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6405	262	116	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6407	262	118	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6409	262	121	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6411	262	144	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6413	262	146	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6415	262	150	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6417	262	151	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6418	262	53	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6420	192	262	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6421	262	219	77	2025-07-12 05:37:04	2025-07-12 05:37:15
6422	262	227	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6424	262	211	77	2025-07-12 05:37:04	2025-07-12 05:37:15
6425	262	234	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6427	262	246	77	2025-07-12 05:37:04	2025-07-12 05:37:15
6431	54	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6433	165	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6435	197	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6437	204	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6439	212	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6441	230	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6443	235	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6445	241	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6447	245	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6449	247	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6451	250	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6453	255	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6455	56	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6457	58	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6459	63	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6461	66	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6463	67	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6465	68	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6467	69	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6469	70	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6471	71	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6473	124	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6475	125	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6477	128	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6479	75	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6481	76	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6483	78	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6485	129	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6487	200	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6488	263	50	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6491	251	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6493	131	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6495	133	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6432	263	165	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6434	263	197	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6436	263	204	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6438	263	212	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6440	263	230	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6442	263	235	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6444	263	241	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6446	263	245	88	2025-07-12 08:37:38	2025-07-12 08:37:54
6450	263	250	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6452	263	255	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6454	263	56	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6456	263	58	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6458	263	63	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6460	263	66	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6462	263	67	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6464	263	68	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6466	263	69	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6468	263	70	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6470	263	71	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6472	263	124	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6474	263	125	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6476	263	128	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6478	263	75	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6480	263	76	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6482	263	78	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6484	263	129	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6489	263	194	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6490	263	251	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6492	263	131	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6494	263	133	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6496	263	135	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6497	135	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6499	142	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6501	237	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6503	258	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6505	242	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6507	248	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6509	177	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6510	263	195	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6513	209	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6516	238	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6518	249	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6520	252	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6522	210	263	100	2025-07-12 08:37:38	2025-07-12 08:37:38
6523	263	191	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6526	196	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6528	97	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6530	99	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6534	79	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6536	85	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6538	86	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6540	88	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6542	93	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6545	226	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6547	239	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6550	113	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6552	114	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6554	115	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6556	117	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6558	119	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6560	120	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6562	122	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6564	123	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6566	145	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6568	143	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6570	139	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6572	140	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6574	141	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6576	147	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6579	149	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6581	152	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6583	153	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6585	173	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6587	240	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6589	254	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6591	262	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6430	263	54	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6448	263	247	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6486	263	200	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6592	50	263	44	2025-07-12 08:37:54	2025-07-12 08:37:54
6593	194	263	44	2025-07-12 08:37:54	2025-07-12 08:37:54
6498	263	142	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6500	263	237	88	2025-07-12 08:37:38	2025-07-12 08:37:54
6502	263	258	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6504	263	242	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6506	263	248	88	2025-07-12 08:37:38	2025-07-12 08:37:54
6508	263	177	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6511	263	202	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6512	263	209	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6514	263	215	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6515	263	238	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6517	263	249	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6519	263	252	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6521	263	210	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6524	191	263	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6525	263	196	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6527	263	97	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6529	263	99	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6531	263	100	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6532	263	102	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6533	263	79	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6535	263	85	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6537	263	86	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6539	263	88	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6541	263	93	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6543	263	253	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6544	263	226	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6546	263	239	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6548	263	104	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6549	263	113	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6551	263	114	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6553	263	115	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6555	263	117	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6557	263	119	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6559	263	120	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6561	263	122	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6563	263	123	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6565	263	145	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6567	263	143	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6569	263	139	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6571	263	140	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6573	263	141	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6575	263	147	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6577	263	148	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6578	263	149	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6580	263	152	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6582	263	153	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6584	263	173	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6586	263	240	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6588	263	254	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6590	263	262	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6125	260	54	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6159	260	68	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6594	50	260	44	2025-07-12 08:53:48	2025-07-12 08:53:48
6595	194	260	44	2025-07-12 08:53:48	2025-07-12 08:53:48
6206	260	202	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6252	260	119	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6596	265	174	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6597	174	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6602	223	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6604	263	265	77	2025-07-12 08:56:44	2025-07-12 08:56:44
6606	55	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6608	57	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6610	59	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6612	60	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6614	61	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6618	65	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6620	72	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6622	73	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6624	126	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6626	127	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6627	265	166	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6628	166	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6630	74	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6632	77	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6634	130	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6636	51	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6640	231	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6642	132	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6644	134	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6646	136	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6648	137	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6650	138	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6652	224	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6654	168	265	100	2025-07-12 08:56:44	2025-07-12 08:56:44
6658	222	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6660	232	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6662	243	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6664	261	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6665	265	171	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6666	171	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6668	179	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6670	94	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6672	95	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6674	96	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6676	98	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6679	103	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6681	80	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6684	82	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6686	83	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6688	84	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6690	87	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6692	89	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6694	90	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6696	91	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6698	92	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6700	244	265	77	2025-07-12 08:56:44	2025-07-12 08:56:44
6671	265	95	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6601	265	223	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6603	265	263	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6625	265	127	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6633	265	130	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6605	265	55	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6607	265	57	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6609	265	59	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6611	265	60	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6615	265	62	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6616	265	64	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6617	265	65	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6619	265	72	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6621	265	73	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6637	265	214	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6635	265	51	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6629	265	74	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6631	265	77	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6641	265	132	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6639	265	231	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6643	265	134	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6638	265	176	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6645	265	136	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6647	265	137	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6656	189	265	66	2025-07-12 08:56:44	2025-07-12 09:58:28
6651	265	224	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6655	265	189	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6657	265	222	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6669	265	94	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6661	265	243	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6663	265	261	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6667	265	179	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6673	265	96	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6675	265	98	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6677	265	101	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6678	265	103	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6699	265	244	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6600	193	265	77	2025-07-12 08:56:44	2025-07-12 09:58:28
6680	265	80	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6682	265	81	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6683	265	82	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6685	265	83	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6687	265	84	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6689	265	87	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6693	265	90	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6695	265	91	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6697	265	92	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6598	265	181	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6599	265	193	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6623	265	126	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6659	265	232	55	2025-07-12 08:56:44	2025-07-12 09:58:28
6702	260	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6705	233	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6707	105	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6711	108	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6715	111	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6717	112	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6719	116	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6721	118	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6723	121	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6725	144	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6727	146	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6729	150	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6731	265	53	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6736	227	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6738	211	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6740	234	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6742	246	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6653	265	168	55	2025-07-12 08:56:44	2025-07-12 08:56:48
6703	265	216	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6734	265	219	55	2025-07-12 08:56:44	2025-07-12 08:56:48
6706	265	105	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6743	264	174	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6744	174	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6745	264	181	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6749	223	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6751	263	264	77	2025-07-12 09:04:51	2025-07-12 09:04:51
6752	264	55	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6753	55	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6754	264	57	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6755	57	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6756	264	59	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6757	59	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6758	264	60	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6759	60	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6760	264	61	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6761	61	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6762	264	62	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6763	264	64	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6764	264	65	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6765	65	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6766	264	72	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6767	72	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6768	264	73	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6769	73	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6770	264	126	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6771	126	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6772	264	127	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6773	127	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6774	264	166	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6775	166	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6776	264	74	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6777	74	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6778	264	77	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6779	77	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6780	264	130	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6781	130	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6783	51	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6784	264	214	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6787	231	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6788	264	132	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6789	132	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6790	264	134	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6791	134	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6792	264	136	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6793	136	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6794	264	137	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6795	137	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6796	264	138	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6797	138	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6799	224	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6801	168	264	100	2025-07-12 09:04:51	2025-07-12 09:04:51
6802	264	189	77	2025-07-12 09:04:51	2025-07-12 09:04:51
6805	222	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6747	193	264	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6748	264	223	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6750	264	263	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6782	264	51	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6785	264	176	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6786	264	231	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6800	264	168	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6803	189	264	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6804	264	222	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6806	264	232	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6708	265	106	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6709	265	107	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6710	265	108	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6712	265	109	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6713	265	110	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6714	265	111	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6716	265	112	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6718	265	116	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6720	265	118	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6722	265	121	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6733	192	265	88	2025-07-12 08:56:44	2025-07-12 09:58:28
6732	265	192	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6737	265	211	66	2025-07-12 08:56:44	2025-07-12 09:58:28
6724	265	144	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6728	265	150	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6730	265	151	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6739	265	234	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6701	265	260	66	2025-07-12 08:56:44	2025-07-12 09:58:28
6704	265	233	55	2025-07-12 08:56:44	2025-07-12 09:58:28
6735	265	227	55	2025-07-12 08:56:44	2025-07-12 09:58:28
6741	265	246	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6807	232	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6809	243	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6811	261	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6812	264	171	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6813	171	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6815	179	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6816	264	94	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6817	94	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6818	264	95	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6819	95	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6820	264	96	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6821	96	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6822	264	98	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6823	98	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6824	264	101	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6825	264	103	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6826	103	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6827	264	80	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6828	80	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6829	264	81	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6830	264	82	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6831	82	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6832	264	83	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6833	83	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6834	264	84	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6835	84	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6836	264	87	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6837	87	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6838	264	89	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6839	89	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6840	264	90	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6841	90	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6842	264	91	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6843	91	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6844	264	92	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6845	92	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6847	244	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6848	264	260	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6849	264	216	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6851	233	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6852	264	105	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6853	105	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6854	264	106	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6855	264	107	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6856	264	108	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6857	108	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6858	264	109	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6859	264	110	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6860	264	111	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6861	111	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6862	264	112	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6863	112	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6864	264	116	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6865	116	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6866	264	118	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6867	118	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6868	264	121	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6869	121	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6870	264	144	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6871	144	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6872	264	146	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6873	146	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6874	264	150	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6875	150	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6876	264	151	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6879	192	264	77	2025-07-12 09:04:51	2025-07-12 09:04:51
6882	227	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6884	211	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6886	234	264	77	2025-07-12 09:04:51	2025-07-12 09:04:51
6888	246	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6746	264	193	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6889	176	264	55	2025-07-12 09:05:21	2025-07-12 09:05:21
6798	264	224	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6808	264	243	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6810	264	261	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6814	264	179	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6846	264	244	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6850	264	233	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6877	264	53	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6878	264	192	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6880	264	219	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6881	264	227	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6883	264	211	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6885	264	234	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6887	264	246	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6613	265	61	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6691	265	89	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6726	265	146	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6895	266	197	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6896	197	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6890	176	265	55	2025-07-12 09:58:28	2025-07-12 09:58:28
6649	265	138	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6891	266	54	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6892	54	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6893	266	165	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6894	165	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6897	266	204	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6898	204	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6899	266	212	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6900	212	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6901	266	230	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6902	230	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6903	266	235	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6904	235	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6906	241	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6907	266	245	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6908	245	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6909	266	247	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6910	247	266	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6911	266	250	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6912	250	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6913	266	255	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6914	255	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6916	56	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6918	58	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6920	63	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6922	66	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6924	67	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6926	68	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6928	69	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6930	70	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6932	71	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6933	266	124	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6934	124	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6935	266	125	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6936	125	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6937	266	128	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6938	128	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6940	75	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6942	76	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6944	78	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6945	266	129	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6946	129	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6947	266	200	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6948	200	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6949	266	265	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6950	266	50	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6952	266	251	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6953	251	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6954	266	131	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6955	131	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6956	266	133	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6957	133	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6958	266	135	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6959	135	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6960	266	142	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6961	142	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6962	266	237	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6963	237	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6964	266	258	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6965	258	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6966	266	242	88	2025-07-13 07:27:44	2025-07-13 07:27:44
6967	242	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
6968	266	248	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6969	248	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6971	177	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
6972	266	195	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6974	266	209	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6975	209	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6977	266	238	88	2025-07-13 07:27:44	2025-07-13 07:27:44
6978	238	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6979	266	249	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6980	249	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6981	266	252	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6982	252	266	88	2025-07-13 07:27:44	2025-07-13 07:27:44
6983	266	264	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6984	264	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6986	210	266	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6987	266	191	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6988	191	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
6989	266	196	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6990	196	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
6991	266	97	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6992	97	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6993	266	99	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6994	99	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6995	266	100	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6996	266	102	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6998	79	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7000	85	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7002	86	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
7004	88	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7006	93	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7008	266	226	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7009	226	266	88	2025-07-13 07:27:44	2025-07-13 07:27:44
7011	239	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7012	266	104	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7013	266	113	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6917	266	58	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6919	266	63	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6921	266	66	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6923	266	67	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6925	266	68	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6927	266	69	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6929	266	70	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6931	266	71	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6939	266	75	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6943	266	78	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6951	266	194	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6970	266	177	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6973	266	202	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6976	266	215	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6985	266	210	88	2025-07-13 07:27:44	2025-07-13 07:27:48
6997	266	79	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6999	266	85	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7001	266	86	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7003	266	88	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7005	266	93	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7007	266	253	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7010	266	239	88	2025-07-13 07:27:44	2025-07-13 07:27:48
7014	113	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7015	266	114	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7016	114	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7017	266	115	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7018	115	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7019	266	117	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7020	117	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7021	266	119	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7022	119	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7023	266	120	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7024	120	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7025	266	122	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7026	122	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7027	266	123	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7028	123	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
7030	145	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7031	266	143	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7032	143	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
7033	266	139	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7034	139	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7035	266	140	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7036	140	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7037	266	141	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7038	141	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7040	147	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7043	149	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7045	152	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7047	153	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7049	173	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7050	266	240	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7051	240	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7052	266	254	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7053	254	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7054	266	262	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7055	262	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6905	266	241	88	2025-07-13 07:27:43	2025-07-13 07:27:48
6915	266	56	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6941	266	76	66	2025-07-13 07:27:43	2025-07-13 07:27:48
7029	266	145	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7039	266	147	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7041	266	148	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7042	266	149	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7044	266	152	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7046	266	153	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7048	266	173	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7057	54	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7059	165	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7061	197	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7063	204	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7065	212	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7067	230	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7069	235	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7071	241	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7073	245	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7075	247	267	77	2025-07-13 08:15:59	2025-07-13 08:15:59
7077	250	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7079	255	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7081	56	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7083	58	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7085	63	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7087	66	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7089	67	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7091	68	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7093	69	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7095	70	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7097	71	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7099	124	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7101	125	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7103	128	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7105	75	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7107	76	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7109	78	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7111	129	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7113	200	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7064	267	212	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7066	267	230	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7068	267	235	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7070	267	241	66	2025-07-13 08:15:59	2025-07-13 08:33:03
7074	267	247	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7076	267	250	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7078	267	255	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7080	267	56	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7082	267	58	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7084	267	63	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7086	267	66	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7088	267	67	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7090	267	68	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7092	267	69	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7094	267	70	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7096	267	71	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7098	267	124	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7100	267	125	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7104	267	75	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7106	267	76	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7108	267	78	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7110	267	129	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7112	267	200	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7114	267	265	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7115	267	50	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7116	267	194	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7117	267	251	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7058	267	165	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7060	267	197	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7072	267	245	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7118	251	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7120	131	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7122	133	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7124	135	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7126	142	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7130	258	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7132	242	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7136	177	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7140	209	267	77	2025-07-13 08:15:59	2025-07-13 08:15:59
7143	238	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7145	249	267	77	2025-07-13 08:15:59	2025-07-13 08:15:59
7147	252	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7149	264	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7151	210	267	100	2025-07-13 08:15:59	2025-07-13 08:15:59
7153	191	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7155	196	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7157	97	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7159	99	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7163	79	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7165	85	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7167	86	267	66	2025-07-13 08:16:00	2025-07-13 08:16:00
7169	88	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7171	93	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7174	226	267	88	2025-07-13 08:16:00	2025-07-13 08:16:00
7176	239	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7179	113	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7181	114	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7183	115	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7185	117	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7187	119	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7189	120	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7191	122	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7193	123	267	66	2025-07-13 08:16:00	2025-07-13 08:16:00
7195	145	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7197	143	267	66	2025-07-13 08:16:00	2025-07-13 08:16:00
7199	139	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7201	140	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7203	141	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7205	147	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7208	149	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7210	152	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7212	153	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7214	173	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7216	240	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7218	254	267	77	2025-07-13 08:16:00	2025-07-13 08:16:00
7220	262	267	77	2025-07-13 08:16:00	2025-07-13 08:16:00
7123	267	135	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7125	267	142	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7127	267	237	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7128	237	267	66	2025-07-13 08:15:59	2025-07-13 08:32:50
7129	267	258	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7133	267	248	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7135	267	177	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7134	248	267	55	2025-07-13 08:15:59	2025-07-13 08:32:50
7139	267	209	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7141	267	215	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7142	267	238	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7144	267	249	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7146	267	252	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7148	267	264	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7150	267	210	66	2025-07-13 08:15:59	2025-07-13 08:33:04
7154	267	196	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7156	267	97	100	2025-07-13 08:15:59	2025-07-13 08:33:04
7158	267	99	100	2025-07-13 08:15:59	2025-07-13 08:33:04
7160	267	100	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7161	267	102	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7162	267	79	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7164	267	85	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7166	267	86	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7168	267	88	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7170	267	93	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7172	267	253	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7175	267	239	66	2025-07-13 08:16:00	2025-07-13 08:33:04
7177	267	104	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7178	267	113	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7180	267	114	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7182	267	115	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7184	267	117	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7186	267	119	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7188	267	120	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7190	267	122	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7192	267	123	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7194	267	145	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7196	267	143	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7198	267	139	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7200	267	140	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7202	267	141	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7204	267	147	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7206	267	148	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7207	267	149	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7211	267	153	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7213	267	173	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7215	267	240	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7217	267	254	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7219	267	262	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7056	267	54	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7062	267	204	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7102	267	128	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7119	267	131	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7121	267	133	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7131	267	242	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7137	267	195	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7152	267	191	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7309	268	249	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7310	249	268	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7311	268	252	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7138	267	202	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7173	267	226	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7209	267	152	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7221	268	54	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7222	54	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7223	268	165	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7224	165	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7225	268	197	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7226	197	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7227	268	204	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7228	204	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7229	268	212	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7230	212	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7231	268	230	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7232	230	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7233	268	235	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7234	235	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7236	241	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7237	268	245	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7238	245	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7239	268	247	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7240	247	268	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7241	268	250	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7242	250	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7243	268	255	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7244	255	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7246	56	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7248	58	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7250	63	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7252	66	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7254	67	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7256	68	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7258	69	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7260	70	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7262	71	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7263	268	124	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7264	124	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7265	268	125	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7266	125	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7267	268	128	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7268	128	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7270	75	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7272	76	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7274	78	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7275	268	129	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7276	129	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7277	268	200	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7278	200	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7279	268	265	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7280	268	50	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7282	268	251	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7283	251	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7284	268	131	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7285	131	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7286	268	133	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7287	133	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7288	268	135	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7289	135	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7290	268	142	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7291	142	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7292	268	237	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7293	237	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7294	268	258	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7295	258	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7296	268	242	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7297	242	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7298	268	248	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7299	248	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7301	177	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7302	268	195	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7304	268	209	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7305	209	268	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7307	268	238	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7308	238	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7312	252	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7313	268	264	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7314	264	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7316	210	268	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7317	268	191	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7318	191	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7319	268	196	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7320	196	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7321	268	97	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7322	97	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7323	268	99	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7324	99	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7245	268	56	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7247	268	58	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7249	268	63	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7251	268	66	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7253	268	67	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7255	268	68	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7259	268	70	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7261	268	71	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7269	268	75	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7271	268	76	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7273	268	78	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7281	268	194	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7300	268	177	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7303	268	202	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7306	268	215	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7315	268	210	77	2025-07-13 11:11:44	2025-07-13 11:11:50
7325	268	100	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7326	268	102	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7328	79	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7330	85	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7332	86	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7334	88	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7336	93	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7338	268	226	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7339	226	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7341	239	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7342	268	104	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7343	268	113	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7344	113	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7345	268	114	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7346	114	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7347	268	115	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7348	115	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7349	268	117	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7350	117	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7351	268	119	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7352	119	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7353	268	120	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7354	120	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7355	268	122	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7356	122	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7357	268	123	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7358	123	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7360	145	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7361	268	143	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7362	143	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7363	268	139	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7364	139	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7365	268	140	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7366	140	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7367	268	141	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7368	141	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7370	147	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7373	149	268	44	2025-07-13 11:11:45	2025-07-13 11:11:45
7375	152	268	44	2025-07-13 11:11:45	2025-07-13 11:11:45
7377	153	268	44	2025-07-13 11:11:45	2025-07-13 11:11:45
7379	173	268	55	2025-07-13 11:11:45	2025-07-13 11:11:45
7380	268	240	88	2025-07-13 11:11:45	2025-07-13 11:11:45
7381	240	268	55	2025-07-13 11:11:45	2025-07-13 11:11:45
7382	268	254	88	2025-07-13 11:11:45	2025-07-13 11:11:45
7383	254	268	77	2025-07-13 11:11:45	2025-07-13 11:11:45
7384	268	262	88	2025-07-13 11:11:45	2025-07-13 11:11:45
7385	262	268	77	2025-07-13 11:11:45	2025-07-13 11:11:45
7235	268	241	77	2025-07-13 11:11:44	2025-07-13 11:11:50
7257	268	69	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7327	268	79	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7329	268	85	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7331	268	86	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7333	268	88	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7335	268	93	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7337	268	253	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7340	268	239	88	2025-07-13 11:11:44	2025-07-13 11:11:50
7359	268	145	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7369	268	147	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7371	268	148	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7372	268	149	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7374	268	152	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7376	268	153	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7378	268	173	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7387	174	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7388	269	181	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7389	269	193	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7392	223	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7394	263	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7396	268	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7398	55	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7400	57	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7402	59	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7404	60	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7406	61	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7410	65	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7412	72	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7414	73	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7416	126	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7418	127	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7420	166	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7422	74	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7424	77	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7426	130	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7428	51	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7390	193	269	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7391	269	223	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7393	269	263	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7395	269	268	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7397	269	55	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7399	269	57	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7401	269	59	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7403	269	60	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7405	269	61	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7407	269	62	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7408	269	64	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7409	269	65	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7411	269	72	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7413	269	73	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7417	269	127	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7419	269	166	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7421	269	74	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7423	269	77	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7425	269	130	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7427	269	51	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7432	231	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7434	132	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7436	134	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7438	136	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7440	137	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7442	138	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7444	224	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7446	168	269	100	2025-07-13 14:01:15	2025-07-13 14:01:15
7447	269	189	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7450	222	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7452	232	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7454	243	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7456	261	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7458	171	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7460	179	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7462	94	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7464	95	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7466	96	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7468	98	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7471	103	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7473	80	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7476	82	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7478	83	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7480	84	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7482	87	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7484	89	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7486	90	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7488	91	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7490	92	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7492	244	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7496	233	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7498	266	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7500	105	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7504	108	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7508	111	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7510	112	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7512	116	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7514	118	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7516	121	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7518	144	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7520	146	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7522	267	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7524	150	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7528	192	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7531	227	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7534	234	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7430	269	176	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7431	269	231	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7433	269	132	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7435	269	134	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7437	269	136	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7439	269	137	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7441	269	138	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7443	269	224	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7445	269	168	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7449	269	222	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7451	269	232	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7453	269	243	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7455	269	261	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7457	269	171	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7459	269	179	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7461	269	94	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7463	269	95	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7465	269	96	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7467	269	98	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7469	269	101	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7470	269	103	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7472	269	80	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7474	269	81	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7475	269	82	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7477	269	83	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7479	269	84	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7481	269	87	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7485	269	90	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7487	269	91	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7489	269	92	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7491	269	244	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7493	269	260	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7494	269	216	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7495	269	233	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7497	269	266	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7499	269	105	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7501	269	106	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7502	269	107	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7503	269	108	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7505	269	109	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7506	269	110	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7507	269	111	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7509	269	112	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7511	269	116	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7513	269	118	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7517	269	144	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7519	269	146	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7521	269	267	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7523	269	150	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7525	269	151	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7526	269	53	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7527	269	192	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7529	269	219	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7530	269	227	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7532	269	211	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7533	269	234	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7535	269	246	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7536	246	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7386	269	174	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7415	269	126	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7429	269	214	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7537	176	269	44	2025-07-13 14:01:20	2025-07-13 14:01:20
7448	189	269	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7483	269	89	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7515	269	121	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7538	270	174	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7539	174	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7540	270	181	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7541	270	193	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7544	223	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7546	263	270	77	2025-07-13 16:14:56	2025-07-13 16:14:56
7548	268	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7549	270	55	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7550	55	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7551	270	57	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7552	57	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7553	270	59	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7554	59	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7555	270	60	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7556	60	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7557	270	61	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7558	61	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7559	270	62	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7560	270	64	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7561	270	65	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7562	65	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7563	270	72	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7564	72	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7565	270	73	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7566	73	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7567	270	126	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7568	126	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7569	270	127	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7570	127	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7571	270	166	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7572	166	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7573	270	74	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7574	74	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7575	270	77	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7576	77	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7577	270	130	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7578	130	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7580	51	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7581	270	214	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7582	270	176	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7584	231	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7585	270	132	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7586	132	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7587	270	134	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7588	134	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7589	270	136	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7590	136	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7591	270	137	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7592	137	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7593	270	138	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7594	138	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7596	224	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7598	168	270	100	2025-07-13 16:14:56	2025-07-13 16:14:56
7599	270	189	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7602	222	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7604	232	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7606	243	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7608	261	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7609	270	171	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7610	171	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7612	179	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7613	270	94	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7614	94	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7615	270	95	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7616	95	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7617	270	96	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7618	96	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7619	270	98	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7620	98	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7621	270	101	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7622	270	103	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7623	103	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7624	270	80	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7625	80	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7626	270	81	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7627	270	82	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7628	82	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7629	270	83	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7630	83	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7631	270	84	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7632	84	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7633	270	87	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7634	87	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7635	270	89	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7636	89	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7543	270	223	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7545	270	263	66	2025-07-13 16:14:56	2025-07-13 16:17:57
7547	270	268	66	2025-07-13 16:14:56	2025-07-13 16:17:57
7579	270	51	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7583	270	231	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7595	270	224	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7597	270	168	44	2025-07-13 16:14:56	2025-07-13 16:17:57
7600	189	270	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7601	270	222	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7605	270	243	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7607	270	261	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7611	270	179	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7637	270	90	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7638	90	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7639	270	91	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7640	91	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7641	270	92	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7642	92	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7644	244	270	77	2025-07-13 16:14:56	2025-07-13 16:14:56
7646	260	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7647	270	216	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7649	233	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7651	266	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7652	270	105	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7653	105	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7654	270	106	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7655	270	107	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7656	270	108	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7657	108	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7658	270	109	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7659	270	110	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7660	270	111	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7661	111	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7662	270	112	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7663	112	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7664	270	116	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7665	116	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7666	270	118	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7667	118	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7668	270	121	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7669	121	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7670	270	144	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7671	144	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7672	270	146	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7673	146	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7674	270	267	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7675	267	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7676	270	150	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7677	150	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7678	270	151	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7679	270	53	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7681	192	270	77	2025-07-13 16:14:56	2025-07-13 16:14:56
7684	227	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7686	211	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7688	234	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7690	246	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7542	193	270	77	2025-07-13 16:14:56	2025-07-13 16:17:57
7691	176	270	44	2025-07-13 16:17:57	2025-07-13 16:17:57
7603	270	232	88	2025-07-13 16:14:56	2025-07-13 16:17:57
7643	270	244	66	2025-07-13 16:14:56	2025-07-13 16:17:58
7645	270	260	55	2025-07-13 16:14:56	2025-07-13 16:17:58
7648	270	233	88	2025-07-13 16:14:56	2025-07-13 16:17:58
7650	270	266	55	2025-07-13 16:14:56	2025-07-13 16:17:58
7680	270	192	55	2025-07-13 16:14:56	2025-07-13 16:17:58
7682	270	219	44	2025-07-13 16:14:56	2025-07-13 16:17:58
7683	270	227	88	2025-07-13 16:14:56	2025-07-13 16:17:58
7685	270	211	77	2025-07-13 16:14:56	2025-07-13 16:17:58
7687	270	234	66	2025-07-13 16:14:56	2025-07-13 16:17:58
7689	270	246	77	2025-07-13 16:14:56	2025-07-13 16:17:58
7693	174	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7694	271	181	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7696	193	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7698	223	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7700	263	271	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7702	268	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7704	55	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7706	57	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7708	59	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7710	60	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7712	61	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7716	65	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7718	72	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7720	73	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7722	126	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7724	127	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7726	166	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7728	74	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7730	77	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7732	130	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7734	51	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7738	231	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7740	132	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7695	271	193	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7697	271	223	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7699	271	263	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7701	271	268	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7703	271	55	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7705	271	57	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7707	271	59	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7709	271	60	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7711	271	61	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7713	271	62	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7714	271	64	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7715	271	65	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7717	271	72	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7719	271	73	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7721	271	126	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7723	271	127	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7725	271	166	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7727	271	74	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7731	271	130	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7733	271	51	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7735	271	214	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7736	271	176	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7737	271	231	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7739	271	132	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7742	134	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7744	136	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7746	137	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7748	138	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7750	224	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7751	271	168	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7752	168	271	100	2025-07-13 20:30:10	2025-07-13 20:30:10
7753	271	189	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7756	222	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7758	232	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7759	271	243	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7760	243	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7762	261	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7764	171	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7766	179	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7768	94	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7770	95	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7772	96	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7774	98	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7777	103	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7779	80	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7782	82	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7784	83	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7786	84	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7788	87	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7790	89	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7792	90	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7794	91	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7796	92	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7798	244	271	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7802	233	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7804	266	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7806	105	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7810	108	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7814	111	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7816	112	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7818	116	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7820	118	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7822	121	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7824	144	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7826	146	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7828	267	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7830	150	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7837	227	271	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7839	211	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7841	234	271	66	2025-07-13 20:30:11	2025-07-13 20:30:11
7843	246	271	55	2025-07-13 20:30:11	2025-07-13 20:30:11
7692	271	174	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7729	271	77	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7844	176	271	44	2025-07-13 20:30:26	2025-07-13 20:30:26
7741	271	134	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7743	271	136	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7745	271	137	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7747	271	138	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7749	271	224	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7754	189	271	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7755	271	222	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7757	271	232	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7761	271	261	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7763	271	171	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7767	271	94	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7769	271	95	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7771	271	96	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7773	271	98	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7775	271	101	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7776	271	103	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7778	271	80	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7780	271	81	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7781	271	82	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7783	271	83	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7785	271	84	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7787	271	87	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7789	271	89	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7791	271	90	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7793	271	91	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7795	271	92	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7797	271	244	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7799	271	260	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7801	271	233	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7803	271	266	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7805	271	105	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7807	271	106	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7808	271	107	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7809	271	108	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7811	271	109	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7812	271	110	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7813	271	111	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7815	271	112	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7817	271	116	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7819	271	118	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7821	271	121	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7823	271	144	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7825	271	146	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7827	271	267	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7829	271	150	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7831	271	151	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7833	271	192	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7834	192	271	88	2025-07-13 20:30:10	2025-07-13 20:30:26
7835	271	219	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7836	271	227	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7838	271	211	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7840	271	234	55	2025-07-13 20:30:11	2025-07-13 20:30:26
7842	271	246	44	2025-07-13 20:30:11	2025-07-13 20:30:26
7765	271	179	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7800	271	216	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7832	271	53	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7846	174	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7847	272	181	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7848	272	193	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7849	193	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7850	272	223	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7851	223	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7852	272	263	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7853	263	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7854	272	268	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7855	268	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7857	55	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7859	57	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7861	59	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7863	60	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7865	61	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7869	65	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7871	72	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7873	73	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7874	272	126	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7875	126	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7876	272	127	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7877	127	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7878	272	166	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7879	166	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7881	74	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7883	77	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7884	272	130	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7885	130	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7886	272	51	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7887	51	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7888	272	214	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7890	272	231	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7891	231	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7892	272	132	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7893	132	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7894	272	134	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7895	134	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7896	272	136	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7897	136	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7898	272	137	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7899	137	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7900	272	138	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7901	138	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7902	272	224	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7903	224	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7905	168	272	100	2025-07-13 21:05:51	2025-07-13 21:05:51
7906	272	189	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7907	189	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7908	272	222	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7909	222	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7910	272	232	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7911	232	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7913	243	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7914	272	261	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7915	261	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7917	171	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7918	272	179	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7919	179	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7920	272	94	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7921	94	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7922	272	95	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7923	95	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7924	272	96	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7925	96	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7926	272	98	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7927	98	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7928	272	101	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7929	272	103	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7930	103	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7932	80	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7935	82	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7937	83	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7939	84	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7941	87	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7943	89	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7945	90	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7947	91	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7856	272	55	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7858	272	57	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7860	272	59	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7862	272	60	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7864	272	61	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7866	272	62	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7867	272	64	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7868	272	65	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7870	272	72	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7880	272	74	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7882	272	77	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7889	272	176	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7904	272	168	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7912	272	243	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7916	272	171	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7931	272	80	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7933	272	81	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7934	272	82	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7936	272	83	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7938	272	84	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7940	272	87	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7942	272	89	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7944	272	90	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7946	272	91	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7948	272	92	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7949	92	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7950	272	244	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7951	244	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7954	272	233	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7955	233	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7956	272	266	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7957	266	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7958	272	105	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7959	105	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7960	272	106	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7961	272	107	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7962	272	108	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7963	108	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7964	272	109	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7965	272	110	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7966	272	111	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7967	111	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7968	272	112	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7969	112	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7970	272	116	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7971	116	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7972	272	118	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7973	118	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7974	272	121	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7975	121	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7977	144	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7979	146	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7980	272	267	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7981	267	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7983	150	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7985	272	53	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7986	272	192	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7987	192	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7989	272	227	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7990	227	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7991	272	211	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7992	272	234	100	2025-07-13 21:05:51	2025-07-13 21:05:51
7993	234	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7995	246	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7845	272	174	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7872	272	73	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7952	272	260	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7953	272	216	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7976	272	144	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7978	272	146	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7982	272	150	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7984	272	151	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7988	272	219	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7994	272	246	77	2025-07-13 21:05:51	2025-07-13 21:06:12
\.


--
-- Data for Name: user_plans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_plans (id, user_id, name, name_ar, type, price, currency, description, description_ar, status, payment_method, total_price, discount, promo_code, payment_id, created_at, updated_at, plan_id, expiry_date, duration) FROM stdin;
4	157	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50PERCENT	29	2025-05-26 11:02:18	2025-05-26 11:02:18	3	2025-08-26	quarterly
3	157	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	1	100.00	0.00	\N	28	2025-05-26 11:00:46	2025-05-26 11:02:18	2	2025-06-26	monthly
5	169	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	30	2025-05-27 05:33:04	2025-05-27 05:33:04	2	2025-06-27	monthly
6	171	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	31	2025-05-27 05:54:00	2025-05-27 05:54:00	2	2025-06-27	monthly
7	172	Free	مجاناً	basic	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	2	0.00	0.00	\N	\N	2025-05-27 06:50:44	2025-05-27 06:50:44	1	2025-06-27	monthly
8	173	Free	مجاناً	basic	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	1	0.00	0.00	\N	\N	2025-05-27 07:11:18	2025-05-27 07:11:18	1	2025-06-27	monthly
9	174	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 08:22:42	2025-05-27 08:22:42	1	2025-06-27	monthly
10	175	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	32	2025-05-27 08:33:44	2025-05-27 08:33:44	2	2025-06-27	monthly
11	176	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	33	2025-05-27 08:44:45	2025-05-27 08:44:45	2	2025-06-27	monthly
12	177	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 12:28:13	2025-05-27 12:28:13	1	2025-06-27	monthly
13	179	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	34	2025-05-27 13:33:29	2025-05-27 13:33:29	2	2025-06-27	monthly
14	180	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 17:40:16	2025-05-27 17:40:16	1	2025-06-27	monthly
15	181	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 18:16:46	2025-05-27 18:16:46	1	2025-06-27	monthly
16	182	Basic	Basic	basic	60.00	AED	<p>Basic</p>	<p>Basic</p>	1	1	120.00	60.00	50off	35	2025-05-28 05:18:20	2025-05-28 05:18:20	4	2025-06-28	monthly
17	50	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 08:17:17	2025-05-28 08:17:17	1	2025-06-28	monthly
18	91	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 09:45:12	2025-05-28 09:45:12	1	2025-06-28	monthly
19	189	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 17:40:24	2025-05-28 17:40:24	1	2025-06-28	monthly
20	191	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 17:51:21	2025-05-28 17:51:21	1	2025-06-28	monthly
22	193	Standard	One month	basic	50.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	50.00	50off	36	2025-05-29 07:14:32	2025-05-29 07:14:32	2	2025-06-29	monthly
23	194	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	37	2025-05-29 08:09:25	2025-05-29 08:09:25	3	2025-08-29	quarterly
24	195	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	38	2025-05-29 08:23:09	2025-05-29 08:23:09	3	2025-08-29	quarterly
25	196	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	39	2025-05-29 08:37:03	2025-05-29 08:37:03	3	2025-08-29	quarterly
26	197	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	40	2025-05-29 17:25:30	2025-05-29 17:25:30	3	2025-08-29	quarterly
27	198	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	41	2025-05-29 17:29:40	2025-05-29 17:29:40	3	2025-08-29	quarterly
40	208	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	53	2025-05-30 14:19:15	2025-05-30 14:19:15	3	2025-08-30	quarterly
37	201	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	51	2025-05-30 11:37:03	2025-05-30 11:37:03	3	2025-08-30	quarterly
36	201	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	50	2025-05-30 11:35:44	2025-05-30 11:37:03	3	2025-08-30	quarterly
35	201	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	49	2025-05-30 11:35:24	2025-05-30 11:37:03	3	2025-08-30	quarterly
38	202	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	52	2025-05-30 12:30:24	2025-05-30 12:30:24	3	2025-08-30	quarterly
32	200	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	46	2025-05-30 11:25:07	2025-05-30 11:25:07	3	2025-08-30	quarterly
34	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	48	2025-05-30 11:28:35	2025-05-30 11:28:35	3	2025-08-30	quarterly
31	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	45	2025-05-30 11:21:31	2025-05-30 11:28:35	3	2025-08-30	quarterly
30	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	44	2025-05-30 11:19:58	2025-05-30 11:28:35	3	2025-08-30	quarterly
29	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	43	2025-05-30 11:05:16	2025-05-30 11:28:35	3	2025-08-30	quarterly
28	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	2	200.00	0.00	\N	42	2025-05-30 10:52:26	2025-05-30 11:28:35	3	2025-08-30	quarterly
33	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	47	2025-05-30 11:28:00	2025-05-30 11:28:35	3	2025-08-30	quarterly
41	204	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 06:13:43	2025-05-31 06:13:43	1	2025-07-01	monthly
39	204	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-05-30 13:53:16	2025-05-31 06:13:43	1	2025-06-30	monthly
42	51	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 06:24:49	2025-05-31 06:24:49	1	2025-07-01	monthly
43	209	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 09:08:53	2025-05-31 09:08:53	1	2025-07-01	monthly
44	210	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 15:03:09	2025-05-31 15:03:09	1	2025-07-01	monthly
45	211	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	54	2025-05-31 16:43:19	2025-05-31 16:43:19	3	2025-08-31	quarterly
46	212	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-01 17:24:23	2025-06-01 17:24:23	1	2025-07-01	monthly
47	213	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	55	2025-06-03 03:07:35	2025-06-03 03:07:35	3	2025-09-03	quarterly
48	214	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	56	2025-06-03 03:22:21	2025-06-03 03:22:21	3	2025-09-03	quarterly
49	215	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	57	2025-06-03 05:22:38	2025-06-03 05:22:38	3	2025-09-03	quarterly
50	216	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	58	2025-06-03 08:34:59	2025-06-03 08:34:59	3	2025-09-03	quarterly
51	219	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	59	2025-06-04 06:49:44	2025-06-04 06:49:44	3	2025-09-04	quarterly
52	220	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	60	2025-06-04 07:08:35	2025-06-04 07:08:35	3	2025-09-04	quarterly
53	221	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	61	2025-06-04 07:22:30	2025-06-04 07:22:30	3	2025-09-04	quarterly
54	222	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-04 07:39:20	2025-06-04 07:39:20	1	2025-07-04	monthly
55	223	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	62	2025-06-04 07:40:31	2025-06-04 07:40:31	3	2025-09-04	quarterly
56	224	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	63	2025-06-04 07:57:51	2025-06-04 07:57:51	3	2025-09-04	quarterly
57	225	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	64	2025-06-04 08:23:25	2025-06-04 08:23:25	3	2025-09-04	quarterly
58	226	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-04 12:13:15	2025-06-04 12:13:15	1	2025-07-04	monthly
59	227	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-04 16:55:17	2025-06-04 16:55:17	1	2025-07-04	monthly
60	228	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	65	2025-06-05 06:22:40	2025-06-05 06:22:40	2	2025-07-05	monthly
61	229	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	66	2025-06-05 06:26:13	2025-06-05 06:26:13	3	2025-09-05	quarterly
63	231	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	67	2025-06-05 07:46:34	2025-06-05 07:46:34	3	2025-09-05	quarterly
65	233	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	68	2025-06-05 08:55:23	2025-06-05 08:55:23	3	2025-09-05	quarterly
66	234	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	69	2025-06-05 09:04:38	2025-06-05 09:04:38	3	2025-09-05	quarterly
62	230	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 07:02:27	2025-06-11 08:10:43	1	2025-07-05	monthly
72	232	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	70	2025-06-05 10:05:56	2025-06-05 10:05:56	3	2025-09-05	quarterly
71	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:55:31	2025-06-05 10:05:56	1	2025-07-05	monthly
70	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:55:24	2025-06-05 10:05:56	1	2025-07-05	monthly
69	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:41:15	2025-06-05 10:05:56	1	2025-07-05	monthly
68	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:40:48	2025-06-05 10:05:56	1	2025-07-05	monthly
67	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:40:43	2025-06-05 10:05:56	1	2025-07-05	monthly
64	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 08:07:00	2025-06-05 10:05:56	1	2025-07-05	monthly
92	230	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	2	180.00	0.00	\N	87	2025-06-11 08:10:43	2025-06-11 08:10:43	2	2025-09-11	quarterly
91	230	Basic	Basic	basic	120.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li><li>Limited cloud storage (5 GB)</li><li>Email support</li></ul>	<p>Bsic</p>	0	1	120.00	0.00	\N	86	2025-06-11 08:10:13	2025-06-11 08:10:43	4	2025-07-11	monthly
93	246	Premium	Premium	premium	175.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	175.00	50off	88	2025-06-11 09:56:59	2025-06-11 09:56:59	3	2025-09-11	quarterly
94	245	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	89	2025-06-11 10:08:51	2025-06-11 10:08:51	3	2025-09-11	quarterly
95	247	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-23 21:06:36	2025-06-23 21:06:36	1	2025-09-23	quarterly
77	235	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	1	2	120.00	0.00	\N	74	2025-06-05 11:03:24	2025-06-05 11:03:24	4	2025-07-05	monthly
76	235	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	2	100.00	0.00	\N	73	2025-06-05 11:02:19	2025-06-05 11:03:24	2	2025-07-05	monthly
75	235	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	0	2	120.00	0.00	\N	72	2025-06-05 10:58:41	2025-06-05 11:03:24	4	2025-07-05	monthly
74	235	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	2	100.00	0.00	\N	71	2025-06-05 10:58:23	2025-06-05 11:03:24	2	2025-07-05	monthly
73	235	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 10:30:40	2025-06-05 11:03:24	1	2025-07-05	monthly
80	237	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	77	2025-06-05 12:06:54	2025-06-05 12:06:54	3	2025-09-05	quarterly
79	237	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	76	2025-06-05 12:06:08	2025-06-05 12:06:54	3	2025-09-05	quarterly
78	237	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	75	2025-06-05 12:03:04	2025-06-05 12:06:54	3	2025-09-05	quarterly
81	238	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	78	2025-06-05 12:58:46	2025-06-05 12:58:46	3	2025-09-05	quarterly
82	239	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	79	2025-06-06 03:38:52	2025-06-06 03:38:52	3	2025-09-06	quarterly
84	240	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	1	1	120.00	0.00	\N	80	2025-06-06 11:44:22	2025-06-06 11:44:22	4	2025-07-06	monthly
83	240	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-06 11:36:59	2025-06-06 11:44:22	1	2025-07-06	monthly
86	192	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	82	2025-06-06 12:51:21	2025-06-06 12:51:21	2	2026-06-06	yearly
85	192	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	0	2	120.00	0.00	\N	81	2025-06-06 12:51:12	2025-06-06 12:51:21	4	2025-07-06	monthly
21	192	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-05-28 17:53:29	2025-06-06 12:51:21	1	2025-06-28	monthly
87	241	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-06 13:58:04	2025-06-06 13:58:04	1	2025-07-06	monthly
88	242	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	83	2025-06-07 12:05:29	2025-06-07 12:05:29	2	2026-06-07	yearly
89	243	Premium	Premium	premium	175.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	175.00	50off	84	2025-06-09 09:15:38	2025-06-09 09:15:38	3	2025-09-09	quarterly
90	244	Premium	Premium	premium	175.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	175.00	50off	85	2025-06-10 09:21:00	2025-06-10 09:21:00	3	2025-09-10	quarterly
99	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-27 19:33:02	2025-06-27 19:33:02	1	2025-09-27	quarterly
100	249	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	90	2025-06-28 13:07:44	2025-06-28 13:07:44	3	2025-09-28	quarterly
101	250	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-09 07:17:38	2025-07-09 07:17:38	1	2025-10-09	quarterly
98	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 19:28:11	2025-06-27 19:33:02	1	2025-09-27	quarterly
97	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 19:22:12	2025-06-27 19:33:02	1	2025-09-27	quarterly
96	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 14:51:35	2025-06-27 19:33:02	1	2025-09-27	quarterly
102	251	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-09 10:44:49	2025-07-09 10:44:49	1	2025-10-09	quarterly
104	252	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-10 06:22:20	2025-07-11 10:22:15	1	2025-10-10	quarterly
105	253	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-10 14:48:47	2025-07-10 14:48:47	1	2025-10-10	quarterly
106	252	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	91	2025-07-11 10:22:15	2025-07-11 10:22:15	3	2025-10-11	quarterly
103	252	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-10 06:19:45	2025-07-11 10:22:15	1	2025-10-10	quarterly
107	254	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	92	2025-07-11 11:24:58	2025-07-11 11:24:58	3	2025-10-11	quarterly
108	255	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	93	2025-07-11 11:45:05	2025-07-11 11:45:05	2	2025-10-11	quarterly
109	256	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 12:03:46	2025-07-11 12:03:46	1	2025-10-11	quarterly
110	257	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 13:38:08	2025-07-11 13:38:08	1	2025-10-11	quarterly
111	258	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	94	2025-07-11 14:47:04	2025-07-11 14:47:04	3	2025-10-11	quarterly
112	261	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 15:11:41	2025-07-11 15:11:41	1	2025-10-11	quarterly
113	260	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 18:17:24	2025-07-11 18:17:24	1	2025-10-11	quarterly
114	262	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	95	2025-07-12 05:31:41	2025-07-12 05:31:41	2	2025-10-12	quarterly
122	266	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-13 07:26:45	2025-07-13 07:26:45	1	2025-10-13	quarterly
117	263	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	96	2025-07-12 08:38:22	2025-07-12 08:38:22	3	2025-10-12	quarterly
116	263	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-12 08:30:06	2025-07-12 08:38:22	1	2025-10-12	quarterly
115	263	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-12 08:27:44	2025-07-12 08:38:22	1	2025-10-12	quarterly
119	265	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-12 08:55:51	2025-07-12 08:55:51	1	2025-10-12	quarterly
121	264	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	99	2025-07-12 09:02:19	2025-07-12 09:02:19	3	2025-10-12	quarterly
120	264	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	98	2025-07-12 09:00:36	2025-07-12 09:02:19	3	2025-10-12	quarterly
118	264	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	97	2025-07-12 08:55:47	2025-07-12 09:02:19	3	2025-10-12	quarterly
126	268	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	103	2025-07-13 11:10:38	2025-07-13 11:10:38	3	2025-10-13	quarterly
125	267	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	4	350.00	0.00	\N	102	2025-07-13 08:07:13	2025-07-13 08:07:13	3	2025-10-13	quarterly
124	267	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	101	2025-07-13 08:06:21	2025-07-13 08:07:13	3	2025-10-13	quarterly
123	267	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	100	2025-07-13 07:57:37	2025-07-13 08:07:13	3	2025-10-13	quarterly
127	269	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	104	2025-07-13 14:00:16	2025-07-13 14:00:16	2	2025-10-13	quarterly
129	270	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-13 15:25:06	2025-07-14 05:23:44	1	2025-10-13	quarterly
133	271	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	107	2025-07-13 20:21:03	2025-07-13 20:21:03	2	2025-10-13	quarterly
134	272	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	4	350.00	0.00	\N	108	2025-07-13 21:03:28	2025-07-13 21:03:28	3	2025-10-13	quarterly
137	270	Premium	غالي	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	111	2025-07-14 05:23:44	2025-07-14 05:23:44	3	2025-10-14	quarterly
136	270	Premium	غالي	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	110	2025-07-14 05:21:36	2025-07-14 05:23:44	3	2025-10-14	quarterly
135	270	غالي	غالي	premium	350.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	350.00	0.00	\N	109	2025-07-14 05:20:39	2025-07-14 05:23:44	3	2025-10-14	quarterly
132	270	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	2	350.00	0.00	\N	106	2025-07-13 15:57:43	2025-07-14 05:23:44	3	2025-10-13	quarterly
131	270	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	0	1	180.00	0.00	\N	105	2025-07-13 15:34:47	2025-07-14 05:23:44	2	2025-10-13	quarterly
130	270	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-13 15:34:20	2025-07-14 05:23:44	1	2025-10-13	quarterly
128	270	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-13 15:22:47	2025-07-14 05:23:44	1	2025-10-13	quarterly
\.


--
-- Data for Name: user_preferences; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_preferences (id, user_id, sect_id, religion_practice, marital_status, education_id, profession_id, dress_code_id, smoking, created_at, updated_at, weight_all, height_all, from_height_cm, to_height_cm, from_height_ft, to_height_ft, from_weight_kg, from_weight_lbs, to_weight_kg, to_weight_lbs, prefrance_setup_completed) FROM stdin;
2	54	10	50	5	8	8	3	1	2025-05-23 10:22:02	2025-05-23 10:22:02	1	0	155	195	5.06	6.15	51	125	83	160	0
1	35	\N	50	\N	\N	\N	\N	1	2025-03-11 17:18:40	2025-03-11 17:18:40	1	1	\N	\N	\N	\N	\N	\N	\N	\N	0
105	165	3	50	1	1	1	1	0	2025-05-27 04:57:29	2025-05-27 04:57:29	\N	\N	175	\N	70	154	2	1	3	2	0
111	174	1	\N	\N	1	1	\N	\N	2025-05-27 08:26:33	2025-05-27 08:26:33	0	0	4.988912582397461	6.43196964263916	152.06	196.05	70.0	154.32	100.0	220.46	0
116	181	1	50	\N	1	1	\N	1	2025-05-27 18:20:05	2025-05-27 18:23:44	0	0	4.0	6.6872968673706055	121.92	203.83	70.0	154.32	100.0	220.46	0
121	193	2	50	\N	\N	3	\N	\N	2025-05-29 07:34:14	2025-05-29 07:35:04	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
125	197	\N	50	\N	\N	\N	\N	\N	2025-05-29 17:27:21	2025-05-29 17:27:21	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
128	204	\N	50	\N	\N	\N	\N	\N	2025-05-31 06:16:32	2025-05-31 06:16:32	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
133	212	\N	50	\N	\N	\N	\N	\N	2025-06-01 17:27:33	2025-06-01 17:27:33	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
138	223	2	50	\N	1	\N	\N	0	2025-06-04 07:44:17	2025-06-04 07:45:33	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
143	230	\N	50	\N	\N	\N	\N	\N	2025-06-05 07:04:13	2025-06-05 07:04:13	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
148	235	\N	50	\N	\N	\N	\N	\N	2025-06-05 10:31:01	2025-06-05 10:31:01	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
153	241	\N	0	\N	\N	\N	\N	1	2025-06-06 14:00:39	2025-06-06 14:32:11	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
158	245	\N	50	\N	\N	\N	\N	0	2025-06-11 10:12:55	2025-06-11 10:12:55	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
159	247	\N	48	\N	\N	\N	\N	1	2025-06-23 21:08:34	2025-06-27 15:31:56	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
162	250	\N	50	\N	\N	\N	\N	0	2025-07-09 07:19:00	2025-07-09 07:19:00	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
167	255	\N	50	\N	\N	\N	\N	\N	2025-07-11 12:55:50	2025-07-11 12:55:50	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
172	263	\N	62	\N	\N	\N	\N	0	2025-07-12 08:37:37	2025-07-12 08:37:54	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
177	268	\N	50	\N	\N	\N	\N	0	2025-07-13 11:11:44	2025-07-13 11:11:49	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
3	55	1	10	7	9	3	5	1	2025-05-23 10:22:03	2025-05-23 10:22:03	0	1	156	193	4.99	6.35	56	128	79	191	0
4	56	3	10	9	2	10	4	1	2025-05-23 10:22:03	2025-05-23 10:22:03	1	0	154	191	4.91	5.58	57	125	100	171	0
5	57	9	10	1	2	1	2	1	2025-05-23 10:22:03	2025-05-23 10:22:03	0	1	152	187	5.19	5.66	55	123	81	203	0
6	58	5	10	8	2	3	1	0	2025-05-23 10:22:04	2025-05-23 10:22:04	0	1	151	184	5.03	6.3	51	127	77	152	0
7	59	5	10	8	10	6	3	0	2025-05-23 10:22:04	2025-05-23 10:22:04	0	0	150	174	5.11	5.8	60	110	71	206	0
8	60	3	10	9	8	4	5	0	2025-05-23 10:22:04	2025-05-23 10:22:04	0	0	159	198	5.14	6.02	57	114	90	186	0
9	61	1	10	5	3	10	5	0	2025-05-23 10:22:05	2025-05-23 10:22:05	1	0	160	170	5.04	5.99	51	123	90	189	0
10	62	9	10	5	7	9	2	1	2025-05-23 10:22:05	2025-05-23 10:22:05	0	0	155	186	4.94	5.71	60	127	87	172	0
11	63	1	10	9	5	1	2	0	2025-05-23 10:22:05	2025-05-23 10:22:05	1	0	159	172	5.13	6.38	59	118	76	190	0
12	64	2	10	5	4	3	4	1	2025-05-23 10:22:06	2025-05-23 10:22:06	0	0	159	191	5.19	5.76	59	115	83	184	0
13	65	9	10	4	6	6	5	0	2025-05-23 10:22:06	2025-05-23 10:22:06	0	0	158	190	4.96	6.23	54	120	73	186	0
14	66	10	10	5	5	7	3	0	2025-05-23 10:22:06	2025-05-23 10:22:06	0	0	154	194	5.07	5.51	56	126	72	188	0
15	67	9	10	9	2	10	3	1	2025-05-23 10:22:07	2025-05-23 10:22:07	0	1	155	176	4.91	5.93	60	124	82	163	0
16	68	9	10	5	5	2	3	0	2025-05-23 10:22:07	2025-05-23 10:22:07	1	1	159	195	5.16	6.11	58	114	84	187	0
17	69	1	10	9	5	8	3	0	2025-05-23 10:22:07	2025-05-23 10:22:07	1	1	152	184	4.97	6.2	57	114	86	155	0
18	70	7	10	4	5	9	4	0	2025-05-23 10:22:07	2025-05-23 10:22:07	0	1	160	179	5	5.63	60	122	70	187	0
19	71	6	10	3	8	6	5	1	2025-05-23 10:22:08	2025-05-23 10:22:08	1	0	151	181	5.11	6.47	56	122	83	151	0
20	72	6	10	4	6	6	3	1	2025-05-23 10:22:08	2025-05-23 10:22:08	1	0	152	184	4.98	6.29	50	112	94	154	0
21	73	2	10	1	8	3	2	1	2025-05-23 10:22:08	2025-05-23 10:22:08	1	1	152	189	5.1	5.79	60	110	96	195	0
72	124	2	60	1	9	8	3	1	2025-05-23 10:22:23	2025-05-23 10:22:23	1	0	159	170	5.12	5.63	52	129	79	163	0
73	125	10	60	5	10	5	1	1	2025-05-23 10:22:24	2025-05-23 10:22:24	0	1	153	178	5.06	5.59	53	113	82	153	0
74	126	10	60	6	2	4	3	0	2025-05-23 10:22:24	2025-05-23 10:22:24	1	0	156	171	5	5.99	51	111	91	198	0
75	127	7	60	6	9	6	4	1	2025-05-23 10:22:24	2025-05-23 10:22:24	1	1	157	189	5.04	6.43	53	121	73	210	0
76	128	3	60	7	2	3	3	0	2025-05-23 10:22:24	2025-05-23 10:22:24	0	1	155	174	4.92	6.43	59	119	75	208	0
106	166	3	50	1	1	1	1	0	2025-05-27 05:03:18	2025-05-27 05:03:18	\N	\N	175	\N	70	154	2	1	3	2	0
22	74	2	30	3	10	5	2	1	2025-05-23 10:22:09	2025-05-23 10:22:09	1	1	151	186	4.99	6.38	57	122	95	215	0
23	75	4	30	10	4	5	4	0	2025-05-23 10:22:09	2025-05-23 10:22:09	1	0	152	178	4.99	5.63	59	128	100	198	0
24	76	4	30	10	10	8	4	0	2025-05-23 10:22:09	2025-05-23 10:22:09	1	0	152	196	4.98	6.02	60	128	99	177	0
25	77	10	30	9	10	9	4	0	2025-05-23 10:22:09	2025-05-23 10:22:09	1	1	155	184	5.13	6.43	51	115	71	161	0
26	78	2	30	5	6	7	2	0	2025-05-23 10:22:10	2025-05-23 10:22:10	0	0	151	172	5.09	6.19	50	110	98	164	0
77	129	7	60	5	2	8	3	0	2025-05-23 10:22:25	2025-05-23 10:22:25	0	0	157	178	5.14	5.62	53	114	98	175	0
78	130	3	60	2	1	10	3	0	2025-05-23 10:22:25	2025-05-23 10:22:25	0	1	155	181	4.96	5.94	55	111	71	180	0
126	200	2	66	\N	1	\N	\N	\N	2025-05-30 11:28:50	2025-05-30 11:29:50	0	0	4.6931843757629395	5.7272467613220215	143.05	174.57	\N	\N	\N	\N	0
129	51	\N	50	\N	\N	\N	\N	\N	2025-05-31 06:25:18	2025-05-31 06:25:18	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
134	214	1	50	\N	1	1	\N	1	2025-06-03 03:26:41	2025-06-04 04:18:01	0	0	152.4	182.88	5.0	6.0	60.0	132.28	100.05787658691406	220.59	0
112	176	2	\N	2	1	1	3	\N	2025-05-27 08:45:50	2025-05-27 17:37:13	0	0	140.0	160.0	4.59	5.25	70.0	154.32	100.0	220.46	0
173	265	\N	50	\N	\N	\N	\N	0	2025-07-12 08:56:43	2025-07-12 09:58:27	\N	\N	152.4	234.36	5.0	7.688909530639648	30.0	66.14	136.99871826171875	302.03	0
144	231	\N	50	\N	\N	\N	\N	\N	2025-06-05 07:55:47	2025-06-05 07:55:47	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
117	50	2	50	\N	1	1	\N	1	2025-05-28 08:20:55	2025-05-28 14:26:46	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
122	194	8	22	\N	1	\N	\N	\N	2025-05-29 08:26:09	2025-05-29 08:26:32	0	0	4.0	5.241692543029785	121.92	159.77	65.0	143.3	77.43901824951172	170.72	0
163	251	\N	50	\N	\N	\N	\N	\N	2025-07-09 10:45:09	2025-07-09 10:45:09	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
79	131	3	60	5	1	3	4	1	2025-05-23 10:22:25	2025-05-23 10:22:25	1	0	150	199	5.14	5.9	51	111	100	194	0
80	132	2	60	9	7	10	4	1	2025-05-23 10:22:26	2025-05-23 10:22:26	1	1	155	195	5.03	5.62	56	115	94	170	0
81	133	2	60	1	9	2	5	0	2025-05-23 10:22:26	2025-05-23 10:22:26	0	0	160	192	5.02	5.94	58	118	100	177	0
82	134	8	60	4	7	9	3	0	2025-05-23 10:22:26	2025-05-23 10:22:26	1	0	160	188	4.92	5.93	55	125	99	150	0
83	135	8	60	9	5	4	5	1	2025-05-23 10:22:26	2025-05-23 10:22:26	1	1	150	179	4.99	5.81	59	128	80	159	0
84	136	5	60	6	2	2	1	1	2025-05-23 10:22:27	2025-05-23 10:22:27	0	1	151	185	5.02	6.04	50	121	89	188	0
85	137	9	60	3	1	10	2	0	2025-05-23 10:22:27	2025-05-23 10:22:27	1	1	157	171	5.05	6.29	51	120	95	189	0
86	138	8	60	8	1	4	3	0	2025-05-23 10:22:27	2025-05-23 10:22:27	0	1	151	190	5.14	6.25	51	125	73	202	0
90	142	3	60	1	3	9	4	1	2025-05-23 10:22:29	2025-05-23 10:22:29	0	1	160	192	5	6.24	51	122	100	169	0
149	237	\N	64	\N	\N	\N	\N	0	2025-06-05 12:05:15	2025-06-05 12:30:16	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
139	224	1	50	\N	1	1	\N	0	2025-06-04 08:00:12	2025-07-10 21:12:00	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
168	258	\N	50	\N	\N	\N	\N	\N	2025-07-11 14:47:30	2025-07-11 14:47:30	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
154	242	\N	50	\N	\N	\N	\N	0	2025-06-07 12:10:39	2025-06-07 12:37:20	\N	\N	\N	\N	\N	\N	60.0	132.28	90.0	198.42	0
160	248	\N	50	\N	\N	\N	\N	1	2025-06-27 14:54:02	2025-06-27 19:22:40	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
178	269	\N	50	\N	\N	\N	\N	0	2025-07-13 14:01:14	2025-07-13 14:01:19	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
108	168	1	\N	\N	\N	\N	\N	\N	2025-05-27 05:16:34	2025-05-27 05:18:14	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
113	177	1	\N	\N	3	1	1	1	2025-05-27 12:51:45	2025-05-27 12:52:53	0	0	5.788780212402344	6.629944801330566	176.44	202.08	75.57901763916016	166.62	108.1091537475586	238.34	0
118	189	1	50	\N	\N	1	\N	1	2025-05-28 17:42:58	2025-05-28 17:43:10	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
123	195	2	50	\N	1	2	\N	\N	2025-05-29 08:29:33	2025-05-29 08:30:08	0	0	5.865484237670898	6.61549186706543	178.78	201.64	81.08710479736328	178.77	107.50120544433594	237	0
127	202	2	67	\N	1	\N	\N	\N	2025-05-30 12:33:43	2025-05-30 12:33:54	0	0	5.123824119567871	5.399822235107422	156.17	164.59	70.0	154.32	100.0	220.46	0
130	209	\N	50	\N	\N	\N	\N	\N	2025-05-31 09:09:46	2025-05-31 09:09:46	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
135	215	7	68	\N	1	1	\N	0	2025-06-03 05:39:44	2025-06-04 09:13:31	0	0	121.92	274.32	4.0	9.0	60.0	132.28	132.74972534179688	292.66	0
140	222	\N	50	\N	\N	\N	\N	0	2025-06-04 10:17:46	2025-06-04 10:18:08	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
145	232	\N	50	\N	\N	\N	\N	\N	2025-06-05 08:09:25	2025-06-05 08:09:25	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
150	238	\N	51	\N	\N	\N	\N	1	2025-06-05 14:30:37	2025-06-06 13:20:10	0	\N	\N	\N	\N	\N	60.0	132.28	90.0	198.42	0
155	243	\N	29	\N	\N	\N	\N	0	2025-06-09 09:23:26	2025-06-09 09:23:26	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
161	249	\N	50	\N	\N	\N	\N	\N	2025-06-28 13:19:21	2025-06-28 13:19:34	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
164	252	\N	50	\N	\N	\N	\N	\N	2025-07-10 06:23:57	2025-07-10 06:23:57	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
169	261	\N	50	\N	\N	\N	\N	\N	2025-07-11 15:13:13	2025-07-11 18:18:28	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
174	264	\N	50	\N	\N	\N	\N	0	2025-07-12 09:04:50	2025-07-12 09:05:20	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
179	270	\N	50	\N	\N	\N	\N	0	2025-07-13 16:14:55	2025-07-13 16:17:57	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
109	171	1	\N	\N	1	1	\N	\N	2025-05-27 05:58:03	2025-05-27 06:42:38	0	0	4.0	7.0	121.92	213.36	70.0	154.32	100.0	220.46	0
131	210	\N	0	\N	\N	\N	\N	\N	2025-05-31 15:04:08	2025-06-06 14:13:34	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
114	179	2	50	2	1	3	2	\N	2025-05-27 13:39:28	2025-05-28 10:05:22	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
119	191	\N	50	\N	\N	\N	\N	\N	2025-05-28 17:52:07	2025-05-28 17:52:07	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
124	196	\N	50	\N	1	3	\N	\N	2025-05-29 08:40:59	2025-05-29 08:41:14	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
42	94	3	50	5	2	5	4	1	2025-05-23 10:22:14	2025-05-23 10:22:14	1	1	159	174	4.95	5.65	53	112	72	161	0
43	95	2	50	1	5	8	4	1	2025-05-23 10:22:15	2025-05-23 10:22:15	1	0	158	170	5.07	6.3	53	123	84	191	0
44	96	9	50	2	4	9	3	0	2025-05-23 10:22:15	2025-05-23 10:22:15	0	1	160	182	4.99	6.12	58	118	93	196	0
45	97	9	50	1	6	7	1	0	2025-05-23 10:22:15	2025-05-23 10:22:15	1	0	150	188	5.05	6.04	52	112	91	192	0
46	98	10	50	1	1	2	5	0	2025-05-23 10:22:16	2025-05-23 10:22:16	0	1	151	175	5.18	5.88	58	119	73	152	0
47	99	3	50	3	8	3	3	1	2025-05-23 10:22:16	2025-05-23 10:22:16	1	1	151	197	4.95	6.1	60	124	84	174	0
48	100	1	50	8	5	5	2	1	2025-05-23 10:22:16	2025-05-23 10:22:16	0	0	157	194	5.19	6.45	52	126	78	178	0
49	101	5	50	8	6	3	5	1	2025-05-23 10:22:16	2025-05-23 10:22:16	0	0	155	180	5.18	5.78	57	123	96	189	0
50	102	7	50	3	3	7	3	1	2025-05-23 10:22:17	2025-05-23 10:22:17	0	0	157	194	5.18	5.63	57	113	78	189	0
51	103	1	50	10	4	3	2	1	2025-05-23 10:22:17	2025-05-23 10:22:17	0	1	159	171	5.15	5.55	57	125	88	209	0
27	79	6	30	1	1	6	3	1	2025-05-23 10:22:10	2025-05-23 10:22:10	0	1	160	173	4.94	5.84	51	120	92	208	0
28	80	6	30	5	10	7	5	1	2025-05-23 10:22:10	2025-05-23 10:22:10	1	0	155	187	4.99	6.21	50	112	81	177	0
29	81	8	30	3	10	4	4	1	2025-05-23 10:22:11	2025-05-23 10:22:11	0	0	160	192	5.05	6.31	56	121	82	215	0
30	82	5	30	8	6	9	1	0	2025-05-23 10:22:11	2025-05-23 10:22:11	1	1	152	180	4.93	5.99	50	126	73	154	0
31	83	3	30	1	7	2	4	0	2025-05-23 10:22:11	2025-05-23 10:22:11	1	0	159	194	5	6.45	52	122	85	187	0
32	84	7	30	3	5	5	1	0	2025-05-23 10:22:11	2025-05-23 10:22:11	0	1	159	173	4.96	5.72	51	110	73	183	0
33	85	10	30	10	3	3	1	0	2025-05-23 10:22:12	2025-05-23 10:22:12	0	0	153	190	4.99	5.5	59	116	94	201	0
34	86	1	30	2	5	3	4	0	2025-05-23 10:22:12	2025-05-23 10:22:12	1	1	152	172	4.98	6.15	57	115	89	158	0
35	87	5	30	2	5	10	3	1	2025-05-23 10:22:12	2025-05-23 10:22:12	0	1	159	175	5.16	5.81	56	125	87	158	0
36	88	10	30	1	5	3	3	0	2025-05-23 10:22:13	2025-05-23 10:22:13	0	0	151	186	5.09	6.13	52	123	75	184	0
37	89	7	30	9	8	7	5	1	2025-05-23 10:22:13	2025-05-23 10:22:13	0	1	151	178	4.92	6.49	54	129	77	201	0
38	90	8	30	3	8	10	5	0	2025-05-23 10:22:13	2025-05-23 10:22:13	0	1	154	179	5	5.52	52	128	86	185	0
39	91	7	30	2	7	1	4	0	2025-05-23 10:22:14	2025-05-23 10:22:14	0	1	154	194	4.99	5.61	53	110	80	162	0
40	92	1	30	3	8	3	4	1	2025-05-23 10:22:14	2025-05-23 10:22:14	1	0	154	182	5.16	6.42	55	125	96	193	0
41	93	8	30	7	1	8	4	0	2025-05-23 10:22:14	2025-05-23 10:22:14	0	0	156	194	5.18	5.84	58	120	88	171	0
156	244	\N	50	\N	\N	\N	\N	\N	2025-06-10 09:26:16	2025-06-10 09:26:16	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
165	253	\N	94	\N	\N	\N	\N	1	2025-07-10 15:13:35	2025-07-10 19:48:21	\N	\N	192.06	258.69	6.301264762878418	8.487353324890137	105.9485092163086	233.58	140.23036193847656	309.15	0
170	260	\N	98	\N	\N	\N	\N	1	2025-07-12 05:20:48	2025-07-12 08:54:22	0	0	121.92	274.32	4.0	9.0	30.0	66.14	180.0	396.83	0
136	216	7	32	\N	6	4	\N	0	2025-06-03 08:40:56	2025-06-03 16:34:24	0	0	121.92	274.32	4.0	9.0	30.0	66.14	180.0	396.83	0
141	226	\N	50	\N	\N	\N	\N	\N	2025-06-04 12:14:57	2025-06-04 12:14:57	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
146	233	\N	50	\N	\N	\N	\N	1	2025-06-05 09:00:49	2025-06-05 09:01:43	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
151	239	\N	0	\N	\N	\N	\N	1	2025-06-06 03:58:43	2025-06-06 04:01:26	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
175	266	\N	50	\N	\N	\N	\N	\N	2025-07-13 07:27:43	2025-07-13 07:27:47	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
180	271	\N	55	\N	\N	\N	\N	1	2025-07-13 20:30:10	2025-07-13 20:30:25	0	0	147.6	201.42	4.842367172241211	6.608401298522949	30.0	66.14	103.23847961425781	227.6	0
52	104	7	50	7	1	10	3	1	2025-05-23 10:22:17	2025-05-23 10:22:17	0	0	151	182	5	6.03	58	125	76	208	0
53	105	5	50	4	6	3	5	0	2025-05-23 10:22:18	2025-05-23 10:22:18	0	0	160	192	5.16	6.25	53	124	81	155	0
54	106	8	50	2	1	7	5	1	2025-05-23 10:22:18	2025-05-23 10:22:18	0	0	160	186	5.08	5.78	57	129	87	213	0
55	107	3	50	5	10	10	4	1	2025-05-23 10:22:18	2025-05-23 10:22:18	0	0	154	194	5.18	6.02	58	127	77	193	0
56	108	5	50	9	2	4	2	0	2025-05-23 10:22:19	2025-05-23 10:22:19	1	1	151	170	4.96	6.47	50	126	77	160	0
57	109	10	50	1	1	5	1	1	2025-05-23 10:22:19	2025-05-23 10:22:19	0	0	159	174	5.09	5.63	54	117	78	178	0
58	110	5	50	2	2	10	1	1	2025-05-23 10:22:19	2025-05-23 10:22:19	0	0	158	193	5.02	5.95	58	112	75	210	0
59	111	4	50	10	4	8	5	0	2025-05-23 10:22:19	2025-05-23 10:22:19	0	0	155	190	5.05	6.2	50	130	88	197	0
60	112	7	50	4	7	9	1	0	2025-05-23 10:22:20	2025-05-23 10:22:20	1	1	154	190	5.17	6.32	59	124	75	219	0
61	113	6	50	8	6	9	4	0	2025-05-23 10:22:20	2025-05-23 10:22:20	1	0	158	199	4.9	5.56	60	114	84	190	0
62	114	10	50	2	10	4	5	0	2025-05-23 10:22:20	2025-05-23 10:22:20	0	0	160	196	5.16	5.81	60	124	91	186	0
63	115	9	50	8	4	3	4	1	2025-05-23 10:22:21	2025-05-23 10:22:21	0	1	155	177	5.18	5.56	50	129	75	201	0
64	116	2	50	7	5	5	4	0	2025-05-23 10:22:21	2025-05-23 10:22:21	0	0	156	178	5.09	6.47	58	118	78	218	0
65	117	5	50	10	4	1	2	0	2025-05-23 10:22:21	2025-05-23 10:22:21	0	0	152	200	5.12	5.53	58	112	84	187	0
66	118	7	50	10	6	5	3	1	2025-05-23 10:22:21	2025-05-23 10:22:21	1	0	151	182	4.93	5.65	54	119	70	177	0
67	119	5	50	10	10	9	3	0	2025-05-23 10:22:22	2025-05-23 10:22:22	0	1	154	193	4.93	5.75	54	120	70	181	0
68	120	2	50	7	4	2	5	0	2025-05-23 10:22:22	2025-05-23 10:22:22	0	1	150	186	5	5.8	60	118	88	170	0
69	121	8	50	2	4	5	5	1	2025-05-23 10:22:22	2025-05-23 10:22:22	0	1	154	172	5.01	6.32	51	113	83	151	0
70	122	2	50	10	3	8	5	1	2025-05-23 10:22:23	2025-05-23 10:22:23	0	1	160	182	4.99	5.89	53	130	98	214	0
71	123	8	50	9	6	8	4	0	2025-05-23 10:22:23	2025-05-23 10:22:23	1	1	158	196	5.18	5.59	52	125	87	211	0
92	144	4	80	1	2	3	1	0	2025-05-23 10:22:29	2025-05-23 10:22:29	1	0	154	190	4.91	6.02	50	117	95	190	0
93	145	10	80	1	5	1	5	1	2025-05-23 10:22:29	2025-05-23 10:22:29	1	1	155	200	5.04	5.98	52	113	96	192	0
94	146	4	80	10	4	9	4	1	2025-05-23 10:22:30	2025-05-23 10:22:30	1	0	155	186	4.93	6.42	59	112	82	166	0
91	143	7	60	3	3	3	3	0	2025-05-23 10:22:29	2025-05-23 10:22:29	1	1	150	190	5.06	5.63	55	128	75	220	0
176	267	\N	60	\N	\N	\N	\N	0	2025-07-13 08:15:59	2025-07-13 08:33:03	0	0	185.38	225.97	6.082152843475342	7.41359806060791	53.79603576660156	118.6	140.6940460205078	310.18	0
181	272	\N	50	\N	\N	\N	\N	0	2025-07-13 21:05:50	2025-07-13 21:06:11	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
87	139	3	60	4	1	5	5	1	2025-05-23 10:22:28	2025-05-23 10:22:28	1	0	155	192	5.1	6.16	53	111	94	220	0
88	140	7	60	2	4	4	1	0	2025-05-23 10:22:28	2025-05-23 10:22:28	0	1	150	196	5.09	6.42	55	126	71	167	0
89	141	2	60	1	10	8	5	1	2025-05-23 10:22:28	2025-05-23 10:22:28	1	1	150	171	4.98	5.92	56	130	82	218	0
95	147	9	80	8	5	8	2	0	2025-05-23 10:22:30	2025-05-23 10:22:30	1	0	160	176	5.07	6.42	50	118	82	206	0
96	148	5	80	8	8	2	1	1	2025-05-23 10:22:30	2025-05-23 10:22:30	0	0	155	178	5.14	5.72	58	129	100	196	0
97	149	9	80	4	9	9	3	0	2025-05-23 10:22:31	2025-05-23 10:22:31	0	0	151	191	5.03	5.73	51	128	99	152	0
98	150	5	80	5	2	2	3	0	2025-05-23 10:22:31	2025-05-23 10:22:31	0	1	150	196	5.16	5.51	50	126	91	190	0
99	151	7	80	3	10	10	2	1	2025-05-23 10:22:31	2025-05-23 10:22:31	0	0	155	189	5.12	6.44	53	128	78	199	0
100	152	7	80	7	1	8	5	1	2025-05-23 10:22:32	2025-05-23 10:22:32	0	1	151	179	4.92	5.9	57	120	79	193	0
101	153	3	80	5	7	2	3	1	2025-05-23 10:22:32	2025-05-23 10:22:32	0	1	150	193	5.04	5.8	55	112	98	182	0
110	173	\N	\N	\N	1	1	\N	\N	2025-05-27 07:40:10	2025-05-27 07:40:10	0	0	140.0	200.0	4.59	6.56	140.0	63.5	200.0	90.72	0
115	53	1	50	\N	1	1	\N	0	2025-05-27 16:32:49	2025-05-27 16:32:49	\N	\N	175	\N	70	154	2	1	3	2	0
120	192	\N	50	\N	\N	\N	\N	\N	2025-05-28 17:54:29	2025-05-28 17:54:29	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
137	219	2	100	\N	2	1	\N	1	2025-06-04 07:24:03	2025-06-04 07:28:04	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
142	227	\N	50	\N	\N	\N	\N	\N	2025-06-04 17:28:07	2025-06-04 17:28:07	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
132	211	\N	50	\N	1	1	\N	\N	2025-05-31 16:48:23	2025-06-05 07:36:07	0	\N	\N	\N	\N	\N	60.0	132.28	90.0	198.42	0
147	234	\N	50	\N	\N	\N	\N	0	2025-06-05 09:10:35	2025-06-05 09:12:32	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
152	240	\N	50	\N	\N	\N	\N	0	2025-06-06 11:41:52	2025-06-06 11:42:13	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
157	246	\N	82	\N	\N	\N	\N	0	2025-06-11 10:11:39	2025-06-11 10:11:39	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0
166	254	\N	50	\N	\N	\N	\N	\N	2025-07-11 11:30:36	2025-07-11 11:30:56	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
171	262	\N	50	\N	\N	\N	\N	0	2025-07-12 05:37:03	2025-07-12 05:37:14	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0
\.


--
-- Data for Name: user_professions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_professions (id, user_id, profession_id, created_at, updated_at) FROM stdin;
3	227	1	\N	\N
4	227	2	\N	\N
8	211	1	\N	\N
9	232	1	\N	\N
10	232	2	\N	\N
11	233	1	\N	\N
12	233	2	\N	\N
13	234	1	\N	\N
14	237	1	\N	\N
15	237	3	\N	\N
16	237	2	\N	\N
17	237	4	\N	\N
18	237	5	\N	\N
19	239	1	\N	\N
20	239	2	\N	\N
25	242	1	\N	\N
26	242	2	\N	\N
27	243	3	\N	\N
28	244	1	\N	\N
29	244	3	\N	\N
30	246	1	\N	\N
31	245	1	\N	\N
32	250	1	\N	\N
39	260	1	\N	\N
40	265	1	\N	\N
41	270	1	\N	\N
42	271	1	\N	\N
\.


--
-- Data for Name: user_reports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_reports (id, reporter_id, reported_user_id, reason, created_at, updated_at, report_type_id) FROM stdin;
1	192	51	reason	2025-05-31 13:37:12	2025-05-31 13:37:12	7
2	192	51	reason	2025-05-31 13:38:44	2025-05-31 13:38:44	7
3	192	51	reason	2025-05-31 13:38:59	2025-05-31 13:38:59	7
4	192	51	reason	2025-05-31 13:40:51	2025-05-31 13:40:51	7
5	192	51	reason	2025-05-31 13:45:23	2025-05-31 13:45:23	7
6	192	51	reason	2025-05-31 13:47:11	2025-05-31 13:47:11	7
7	53	55	reason	2025-05-31 13:54:47	2025-05-31 13:54:47	1
8	53	56	reason	2025-05-31 14:07:46	2025-05-31 14:07:46	1
9	192	51	reason	2025-05-31 14:07:47	2025-05-31 14:07:47	7
10	239	192	Bullying or harassment	2025-06-06 12:54:56	2025-06-06 12:54:56	4
11	244	264	I just don't like it	2025-07-12 09:59:50	2025-07-12 09:59:50	2
\.


--
-- Data for Name: user_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_requests (id, sender_id, receiver_id, status, created_at, updated_at) FROM stdin;
1	48	35	0	2025-03-11 17:18:40	2025-03-11 17:18:40
2	35	48	0	2025-03-11 17:18:40	2025-03-11 17:18:40
4	192	196	0	2025-05-29 16:20:59	2025-05-29 16:20:59
5	192	194	0	2025-05-29 16:21:38	2025-05-29 16:21:38
45	210	232	1	2025-06-05 09:04:32	2025-06-05 09:05:25
7	50	176	0	2025-05-29 16:50:59	2025-05-29 16:50:59
8	50	174	0	2025-05-29 18:07:02	2025-05-29 18:07:02
9	197	181	0	2025-05-29 18:09:02	2025-05-29 18:09:02
11	197	179	1	2025-05-29 18:10:14	2025-05-29 18:23:35
13	50	179	0	2025-05-30 05:30:05	2025-05-30 05:30:05
49	233	215	1	2025-06-05 09:36:10	2025-06-05 09:36:16
90	245	244	1	2025-07-11 14:59:03	2025-07-11 15:01:53
10	197	193	1	2025-05-29 18:09:29	2025-05-30 10:33:55
150	265	211	1	2025-07-13 14:03:39	2025-07-13 14:08:56
117	260	258	0	2025-07-12 12:04:16	2025-07-12 12:04:16
151	268	100	0	2025-07-13 16:09:16	2025-07-13 16:09:16
51	210	192	1	2025-06-05 11:54:08	2025-06-05 13:21:09
152	268	237	0	2025-07-13 16:10:14	2025-07-13 16:10:14
22	193	194	0	2025-05-30 11:08:16	2025-05-30 11:08:16
94	253	216	0	2025-07-12 05:20:11	2025-07-12 05:20:11
154	268	272	1	2025-07-13 21:09:17	2025-07-13 21:09:30
24	210	179	0	2025-05-31 16:28:42	2025-05-31 16:28:42
60	243	215	1	2025-06-09 09:49:28	2025-06-09 09:50:19
61	242	243	1	2025-06-09 10:32:55	2025-06-09 10:33:40
28	214	155	0	2025-06-03 07:37:10	2025-06-03 07:37:10
63	244	215	1	2025-06-10 13:15:26	2025-06-10 13:15:33
31	219	215	1	2025-06-04 08:42:10	2025-06-04 08:57:04
64	230	244	1	2025-06-11 08:02:26	2025-06-11 08:02:40
65	230	243	0	2025-06-11 08:11:02	2025-06-11 08:11:02
33	222	215	1	2025-06-04 10:47:19	2025-06-04 10:54:19
125	264	267	0	2025-07-13 08:24:42	2025-07-13 08:24:42
34	197	216	0	2025-06-04 15:26:03	2025-06-04 15:26:03
67	245	246	1	2025-06-11 10:21:49	2025-06-11 10:21:56
68	247	234	0	2025-06-23 21:09:04	2025-06-23 21:09:04
69	247	53	0	2025-06-27 17:24:10	2025-06-27 17:24:10
70	249	224	0	2025-06-28 13:23:25	2025-06-28 13:23:25
155	271	268	1	2025-07-13 21:19:39	2025-07-13 21:20:02
39	230	229	0	2025-06-05 07:04:34	2025-06-05 07:04:34
40	230	223	0	2025-06-05 07:05:06	2025-06-05 07:05:06
41	230	179	0	2025-06-05 07:05:41	2025-06-05 07:05:41
72	252	224	1	2025-07-10 12:09:26	2025-07-10 12:09:47
42	230	219	1	2025-06-05 07:16:53	2025-06-05 07:22:04
44	215	225	0	2025-06-05 07:58:36	2025-06-05 07:58:36
127	267	262	0	2025-07-13 08:44:48	2025-07-13 08:44:48
128	262	260	1	2025-07-13 10:28:49	2025-07-13 10:28:58
75	216	249	0	2025-07-11 07:41:46	2025-07-11 07:41:46
129	264	263	0	2025-07-13 11:05:59	2025-07-13 11:05:59
79	245	216	1	2025-07-11 08:00:07	2025-07-11 08:00:14
80	253	246	0	2025-07-11 08:44:58	2025-07-11 08:44:58
81	254	216	1	2025-07-11 11:36:08	2025-07-11 11:36:25
134	264	268	0	2025-07-13 11:34:58	2025-07-13 11:34:58
85	224	255	1	2025-07-11 14:10:28	2025-07-11 14:11:13
99	258	216	0	2025-07-12 06:44:07	2025-07-12 06:44:07
100	262	216	0	2025-07-12 06:45:54	2025-07-12 06:45:54
89	193	255	1	2025-07-11 14:34:47	2025-07-11 14:35:40
139	197	266	0	2025-07-13 11:49:59	2025-07-13 11:49:59
140	197	260	0	2025-07-13 11:51:49	2025-07-13 11:51:49
146	197	243	0	2025-07-13 13:23:06	2025-07-13 13:23:06
\.


--
-- Data for Name: user_sects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_sects (id, user_id, sect_id, created_at, updated_at) FROM stdin;
1	227	1	\N	\N
2	227	2	\N	\N
3	211	1	\N	\N
6	232	1	\N	\N
7	232	2	\N	\N
8	233	1	\N	\N
9	233	2	\N	\N
10	234	8	\N	\N
11	234	2	\N	\N
12	237	2	\N	\N
13	237	8	\N	\N
14	237	6	\N	\N
15	239	3	\N	\N
16	239	2	\N	\N
17	240	1	\N	\N
18	240	2	\N	\N
20	238	2	\N	\N
21	238	3	\N	\N
26	243	2	\N	\N
27	244	2	\N	\N
28	246	1	\N	\N
29	245	1	\N	\N
30	248	8	\N	\N
31	250	1	\N	\N
32	216	2	\N	\N
37	260	1	\N	\N
38	265	1	\N	\N
39	264	2	\N	\N
41	269	6	\N	\N
42	270	1	\N	\N
43	272	8	\N	\N
\.


--
-- Data for Name: user_sports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_sports (id, user_id, sport_id, created_at, updated_at) FROM stdin;
1	35	1	2025-03-11 17:18:40	2025-03-11 17:18:40
7	157	4	\N	\N
8	173	2	\N	\N
9	173	6	\N	\N
10	173	3	\N	\N
11	173	4	\N	\N
14	177	1	\N	\N
15	177	4	\N	\N
16	177	5	\N	\N
17	177	2	\N	\N
18	179	2	\N	\N
20	176	4	\N	\N
21	181	6	\N	\N
22	181	2	\N	\N
23	50	2	\N	\N
24	50	5	\N	\N
25	179	4	\N	\N
26	50	3	\N	\N
27	50	6	\N	\N
28	189	3	\N	\N
29	189	6	\N	\N
30	191	2	\N	\N
32	192	3	\N	\N
33	193	2	\N	\N
34	193	6	\N	\N
35	194	4	\N	\N
36	194	5	\N	\N
37	194	2	\N	\N
38	195	1	\N	\N
39	195	4	\N	\N
40	195	5	\N	\N
41	195	6	\N	\N
42	196	4	\N	\N
43	196	2	\N	\N
44	197	2	\N	\N
45	197	3	\N	\N
46	197	4	\N	\N
47	200	2	\N	\N
48	200	4	\N	\N
49	200	5	\N	\N
50	202	4	\N	\N
51	202	5	\N	\N
52	204	4	\N	\N
53	204	1	\N	\N
54	209	2	\N	\N
55	209	3	\N	\N
58	212	2	\N	\N
59	212	6	\N	\N
62	216	2	\N	\N
63	53	1	\N	\N
64	53	3	\N	\N
66	211	3	\N	\N
70	216	3	\N	\N
71	216	6	\N	\N
72	214	1	\N	\N
73	214	4	\N	\N
74	214	5	\N	\N
75	214	6	\N	\N
76	219	1	\N	\N
77	219	2	\N	\N
78	219	4	\N	\N
79	219	5	\N	\N
80	223	1	\N	\N
81	223	2	\N	\N
82	223	3	\N	\N
83	224	2	\N	\N
84	224	5	\N	\N
86	215	3	\N	\N
87	222	2	\N	\N
88	222	1	\N	\N
89	222	5	\N	\N
90	215	1	\N	\N
91	215	6	\N	\N
92	229	2	\N	\N
93	229	5	\N	\N
94	230	1	\N	\N
95	230	2	\N	\N
96	230	6	\N	\N
97	231	1	\N	\N
98	231	4	\N	\N
99	232	2	\N	\N
100	232	5	\N	\N
101	233	2	\N	\N
102	233	5	\N	\N
103	234	2	\N	\N
104	234	5	\N	\N
105	237	2	\N	\N
106	237	6	\N	\N
107	237	4	\N	\N
108	237	5	\N	\N
109	238	1	\N	\N
110	238	4	\N	\N
111	239	1	\N	\N
112	239	5	\N	\N
113	192	1	\N	\N
114	240	1	\N	\N
115	240	4	\N	\N
116	240	6	\N	\N
117	241	6	\N	\N
118	241	3	\N	\N
119	242	4	\N	\N
120	242	6	\N	\N
121	243	2	\N	\N
122	243	6	\N	\N
123	246	4	\N	\N
124	246	5	\N	\N
125	245	2	\N	\N
126	245	1	\N	\N
127	247	5	\N	\N
128	247	3	\N	\N
129	249	3	\N	\N
130	249	6	\N	\N
131	249	4	\N	\N
132	249	1	\N	\N
133	253	1	\N	\N
134	253	2	\N	\N
135	254	2	\N	\N
136	254	5	\N	\N
137	254	4	\N	\N
138	262	2	\N	\N
139	262	5	\N	\N
140	263	6	\N	\N
141	264	6	\N	\N
143	264	2	\N	\N
144	264	5	\N	\N
145	267	6	\N	\N
146	268	2	\N	\N
147	268	5	\N	\N
148	269	2	\N	\N
149	269	6	\N	\N
150	270	2	\N	\N
151	270	6	\N	\N
152	271	2	\N	\N
153	271	5	\N	\N
154	272	3	\N	\N
155	272	6	\N	\N
156	272	5	\N	\N
\.


--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.users (id, name, email, email_verified_at, password, remember_token, created_at, updated_at, first_name, last_name, dial_code, phone, country_id, emirates_id, status, deleted_at, role_id, gender, profile_image, dob, is_verified, user_device_type, user_device_token, user_phone_otp, user_email_otp, password_reset_code, password_reset_time, password_reset_otp, is_social, phone_verified, user_access_token, email_verified, deleted, nick_name, nationality_id, user_number, parent_approval, blur_image, is_image_blur, hide_on_search, not_show_over_aged, firebase_user_key, profile_setup_completed, parent_name, parent_email, preference_setup_completed, who_can_contact) FROM stdin;
234	Neha sheikh	hibaejaz97+11@gmail.com	2025-06-09 08:38:54	$2y$12$/xHqF8PG1gRY8vqmw6e/nu7vL6Q2Ro/57PfJ9SsqTWEF1FhVIdb2W	\N	2025-06-05 09:02:52	2025-06-09 08:38:54	\N	\N	971	561970400	1	4	1	\N	2	Female	68415d9e37a75_1749114270.	1990-06-05	0	android	cLc0rEF4TwSoMh0Evig4so:APA91bF9UtY8SkbCABh1fIR-Eu57v6lzClUPwaKyMWFYykGMwc6CY-aX0Q1JwUOGdYiB77yZ6mnbP5xLL0vv2OZqQwwZaUsRwf41rs6gK-2BS1RxcNtAe1I	\N		\N	\N	\N	0	1	5a8325b656e47fc46720c32c05eb45f49be89e5a8a37087da2e0955495b2a65d	1	0	Neha	7	LQ000234	1	0	0	f	f	-ORzK2K9MCRgG2hsJmQF	1	Sheikh Sahab	hibaejaz97+12@gmail.com	1	\N
185	Mudassar Zahid	mudasserzahid48+16@gmail.com	2025-05-28 09:59:03	$2y$12$c6wWNxUG4DYf2MysnTJxY.SJr1ayxlODH6K.dML3y2av3UL0N6Cxi	\N	2025-05-28 09:59:03	2025-05-28 10:00:32	\N	\N	+971	1633481268	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	adfd2d4d886fb6fd41dcefd64bcde8753139640511b026ebe9c8beaaff97e6e7	0	0	Mudassar	1	LQ000185	0	0	0	f	f	-ORLKBOCnsJ5E1rmrhF2	1	Zahid	mudasserzahid48+14@gmail.com	0	\N
258	Jamie iso two	razahamid34+100@gmail.com__deleted_acount258	2025-07-12 12:01:51	$2y$12$7KdV3Ly2RLpCYbIiW2ampemt.Wrr/fdyHBP3hQCKCh3kR7BQU25UC	\N	2025-07-11 14:43:04	2025-07-12 12:04:38	\N	\N	971	435435435__deleted_acount258	\N	\N	0	\N	2	Male	687123b53c580_1752245173.	2007-07-11	0	ios		\N		\N	\N	\N	0	1		1	1	hamid	237	LQ000258	1	0	1	f	f	-OUtw94QD5Kep5lsNlw1	1	\N	\N	1	\N
244	Sana Yousuf	hibaejaz97+14@gmail.com	2025-07-12 09:58:51	$2y$12$VzaOgxNbPNe0a6ASJQcCZumqXKSsQtlKEjaxTJoRYr/aTVOvGXdFe	\N	2025-06-10 09:19:28	2025-07-12 10:21:57	\N	\N	971	561998754	1	3	1	\N	2	Female	6847f8eaee039_1749547242.	1991-06-10	0	android		\N		\N	\N	\N	0	1		1	0	Sana	169	LQ000244	1	0	1	f	f	-OSO7nNjI-pWfSYevyFx	1	Yusuf Zai pathan	hibaejaz97+15@gmail.com	1	\N
1	Admin User	admin@luqia.com	\N	$2y$12$EjTQCsXgWY10t7kO8q7x9eJfMH6KecjMmSAkA5faoxmjBuEX.7qja	\N	2024-12-05 15:22:16	2025-06-23 04:38:49	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	\N	\N	\N	1	0	0	f	f	\N	0	\N	\N	0	\N
214	Sara new	sara1@gmail.com	2025-06-04 04:04:42	$2y$12$xOsvatu.Ya8PL97h4bI.8ePf5MYy/LOfVmF/Ks9NqTAgcD3LmYJKS	\N	2025-06-03 03:21:26	2025-06-04 04:04:42	\N	\N	971	546161666	\N	\N	1	\N	2	Female	\N	2007-05-01	0	android	dXpXJDqmSqGvmc8ttVwGWt:APA91bETQkerkDE12KsLz3hPZM7WMzeG1OZnNy-rnMLm6drxEd-yfzNNzvh0YinV9Ae7x11DQvX-8DIbVJEuqhxV0Gn1-o_tVUjSp3wuGovNkh-S4FhQ5h0	\N			2025-06-03 03:29:27	0	0	1	7c454085faae36c4c92d04635ea33c67440abe7d7ba385b00205f62b4a4b76a6	1	0	Sara nick	237	LQ000214	1	0	0	f	f	-ORnniUNYT2QJO2U_NS6	1	Sara parents	anil@dxbusinessgroup.com	1	\N
224	Ameera	razahamid34+6@gmail.com__deleted_acount224	2025-07-11 12:48:58	$2y$12$Eei.rlNx4QWatibrzQNkuOqV374fbKcef9HiG6uQJ1uByGF62xX2a	\N	2025-06-04 07:57:14	2025-07-11 14:15:21	\N	\N	971	376675757__deleted_acount224	1	1	0	\N	2	Female	683ffc759353c_1749023861.	2007-06-04	0	android		\N			2025-07-10 12:07:31	0	0	1		1	1	Ameera	237	LQ000224	1	0	1	f	f	-ORtwR8ctRIrYINYfP75	1	Hamid	razahamid34@gmail.com	1	\N
267	Hania Amir	hibaejaz97+20@gmail.com	2025-07-13 10:56:26	$2y$12$AQQkZrRTNKAndHJs25vW9OpVUfd1ydr0noN/b7x2ZJAATI5fQKu/m	\N	2025-07-13 07:55:42	2025-07-13 11:01:46	\N	\N	971	561660845	1	1	1	\N	2	Female	687366d8d9fe1_1752393432.	1988-07-13	0	ios		\N		\N	\N	\N	0	1		1	0	Hani	169	LQ000267	1	0	0	f	f	-OV1m51AKbTzYr-bFyZ2	1	Amir khan	lhan@gmail.com	1	\N
85	Marcella Bailey	bauch.kirk@example.com	\N	$2y$12$0t/zHpn7Sw9qkwCmmiJNtuHP4KVxCbzFI.ers4.qrBj0c8O8UtunC	\N	2025-05-23 10:22:12	2025-05-23 10:22:12	\N	\N	+1	294924330	120	\N	1	\N	2	Male		1971-01-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Otis Block	\N	LQ888624	1	0	0	f	f	\N	0	\N	\N	0	\N
180	Femal	dx040@gmail.com	2025-05-27 17:39:44	$2y$12$upF6oPW2j3VlTvJATjoeuertGKgZF2TGAu/KOv0GE0akr2tIUaDpu	\N	2025-05-27 17:39:44	2025-05-27 17:40:05	\N	\N	971	646454554	\N	\N	1	\N	2	Female	6835f8f5a96fd_1748367605.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	687d6c50e8f71185590f80d12d005bf4fd84006a8e2cb850208480bde8a2714a	0	0	Femal	237	LQ000180	0	0	0	f	f	-ORHp1tt8K7yXLP09IFY	0	\N	\N	0	\N
51	Mudassar Zahid	dx002@gmail.com	2025-05-31 14:21:43	$2y$12$W5GiiYpg55h3GtkqQ1T0MOk8yflhfRO4B1kQzvAafddBw8B0DMVfq	\N	2025-05-20 07:08:20	2025-05-31 14:21:43	\N	\N	971	35555556	1	1	1	\N	2	Female	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N			2025-05-31 06:24:02	0	0	1	869b8e9c9969760147502d6b0263729011f15ec209d2fd2b9931dad0b35d6eb1	1	0	Mudassar	\N	LQ000051	1	0	0	f	f	\N	1	\N	\N	1	\N
197	Ameer Raza	ameer@dx.com	2025-07-13 11:43:48	$2y$12$IsimNhpqsq7psicYGY.ZRujNEKDzcj5M.YqPpAAuOcoA7kI9JbXmG	\N	2025-05-29 17:23:31	2025-07-13 13:29:55	\N	\N	971	354242277	1	1	1	\N	2	Male	6838987d3de9c_1748539517.	2007-05-29	0	android	eZ1xOLjaHkX0ndbZ4hnnV2:APA91bFsf2YF-Ugy1byH9RSF0k3AmtFyzxN4D9pyOjuSRiqZ8sWFZigFOroprx8vr_0Ya48ZHG4-d-9UItok2zFZJ05ZWb4iCnx82a9-NgWVzuXemyW3Ves	\N			2025-07-12 12:14:49	0	0	1	4b8f252d7487802ebd1c9607c8e1b697ef223c9fe52894b756bf27606e4aef36	1	0	Ameer	237	LQ000197	1	0	0	f	f	-ORS3VpdW3uUKeJwbyDY	1	\N	\N	1	\N
186	Mudassar Zahid	mudasserzahid48+17@gmail.com	2025-05-28 10:05:54	$2y$12$Z8CGLZbBK3npbeokPRi8bOJi5q/temTeMU96GkbEs9wlJGKPxEd/e	\N	2025-05-28 10:03:47	2025-05-28 10:05:54	\N	\N	+971	1633481269	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	34c0f469511f3744560f41b27a26e45805fd4d8e45998cafd81b164a79a72ea4	1	0	Mudassar	1	LQ000186	0	0	0	f	f	\N	0	Zahid	mudasserzahid48+14@gmail.com	0	\N
50	Mudassar Zahid	dx001@gmail.com	2025-05-31 06:18:16	$2y$12$pIfZtZG2gcl8lH4/dDlYC.xTHEAWb/dU7dvJeOiZnXE4nPnz3u5t.	\N	2025-05-20 07:06:44	2025-05-31 06:18:16	\N	\N	971	35555555	1	1	1	\N	2	Male	6830ba7920961_1748023929.	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N	1111		2025-05-22 12:35:16	0	0	1	be470cb92b1aa9e5b871481880a33487fa7ff52ee0f28dd6e96104e4f965e490	1	0	Mudassar	1	LQ000050	1	0	0	f	f	\N	1	\N	\N	1	\N
174	Iamges	images@gmail.com	2025-05-30 10:47:07	$2y$12$UiXSGzTGAzslKIp27TI.CO/EJLhcOJurczpL6qGMXjV1JKX6x.kFS	\N	2025-05-27 08:15:06	2025-05-30 10:47:07	\N	\N	971	342424242	\N	\N	1	\N	2	Female	683574a05187b_1748333728.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	e0b71a409786e521789b13fa5e9141f6960ae2ee0a555e958bcc67ff710df9d2	1	0	Test	237	LQ000174	0	0	0	f	f	-ORFnnoixH9MHgUEOAU0	0	\N	\N	0	\N
204	New	hello@dx.com	2025-05-30 13:42:22	$2y$12$swuFhf9EtP8WaSiSxpRuKueTxLda9a3sfnHTczHaoNvLo02dOHH/.	\N	2025-05-30 13:37:10	2025-05-31 06:16:32	\N	\N	971	255555555	1	1	1	\N	2	Male	\N	2007-05-30	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	693ec84ad949f41664eeef179db267175029e1a40047dfa9fb1c111dd129e2cf	0	0	Hello	237	LQ000204	1	0	0	f	f	-ORWQU-xEUk49rbPUuf4	1	\N	\N	1	\N
53	Mudassar Zahid	ashok@gmail.com	2025-05-22 06:30:08	$2y$12$7TlgyFvQyCdvLrLTVD93/u/wOM9qUPQVTVXkj7/aznYueA.bb2EIa	\N	2025-05-22 06:30:08	2025-05-22 06:30:08	\N	\N	+971	1633411271	1	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	d6bce21463de2634eab2f81a3e7a5bd9a391fe9cb20987fb3c3ce94b25805218	0	0	Mudassar	\N	LQ000053	0	0	0	f	f	\N	0	\N	\N	0	\N
193	Marry Christ	iftikhardxba@hotmail.com	2025-07-11 14:31:07	$2y$12$lC1jueuQ2jrA4JJkSFwSK.n4VPU7aBu7mJm9Xd5RpIk.cHa3ShdEa	\N	2025-05-29 07:13:26	2025-07-11 15:07:32	\N	\N	971	561669888	\N	\N	1	\N	2	Female	683809441e3e0_1748502852.	1996-08-28	0	android		\N		\N	\N	\N	0	1		1	0	Marry	237	LQ000193	1	0	0	f	f	-ORPss9nn7lm_X09dnPz	1	Christopher Columbus	hibadxba@hotmail.com	1	\N
154	Hamid	dx003@gmail.com	2025-05-26 20:28:56	$2y$12$nkNnS.VEvzQmlqAT//8.AeyU.vcGfHH7RXxy.EF1Pwgfr3sGJ8/nW	\N	2025-05-23 13:54:05	2025-05-26 20:28:56	\N	\N	971	344156255	1	\N	1	\N	2	Female	\N	1996-05-23	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	2454fc86b60c08d678fba1c08432960e21a6ad597bf2d4e39beb445386680c6c	1	0	Raza	\N	LQ000154	0	0	0	f	f	\N	0	\N	\N	0	\N
52	Mudassar Zahid	mudasserzahid48+8@gmail.com	2025-05-22 05:30:36	$2y$12$7IdJmTEUww7KOKs2CQ4Q6OHLEfjRTiZFCMQWheuNx4eVHUorHH3iS	\N	2025-05-22 05:30:36	2025-05-22 05:40:50	\N	\N	+971	1633481271	1	\N	1	\N	2	Female	682eb8e1e0b72_1747892449.jpg	1994-05-25	0	android	1231231	1111		\N	\N	\N	0	1	7a39f43be5cae2e7445838cd402c4f84376560a9e9174baaaeb1e2237c07d13a	0	0	Mudassar	\N	LQ000052	0	0	0	f	f	\N	0	\N	\N	0	\N
49	Mudassar Zahid	mudasserzahid48+7@gmail.com	2025-07-12 14:40:46	$2y$12$nqYBK3aM0xGn1Ohl2yK1FO8VWMwUcdo7o9M8D1WDO4IK0uHm3B0Jm	\N	2025-05-19 13:08:48	2025-07-12 14:49:10	\N	\N	+971	112233449	237	\N	1	\N	2	Male	\N	1994-05-25	0	android	121250	1111		\N	\N	\N	0	1	6bab963b06eeb6d723ea3c41c323d9d63950e66d3a8aa329aedae1779fa1c4b5	1	0	Mudassar	\N	LQ000049	1	0	0	f	f	\N	0	\N	\N	0	\N
164	Anil navus	anilnavis@gmail.com	2025-05-27 04:42:09	$2y$12$4yd61GBO10vcoeVu3h6st.KHuVz6NmFAtP370v1OM6KuozOZqsGsm	\N	2025-05-27 04:42:09	2025-05-27 04:42:09	\N	\N	971	564005096	\N	\N	1	\N	2	Male	\N	2005-04-28	0	android	eiOF59gkTGqfbdSZdrLNls:APA91bEx3h6giVdpTJIbE5Rh4U-nWXEYanmnY0K4hz3APy03-UbtCUozBFUtYBmadn67NibskHczSAgQ9_hJSbesCpPHqwfSir68XMTjohay9mCAnzAtzR0			\N	\N	\N	0	1	064fff7edac61012044b4dd8bb8c4a94004210f20a2d2ebdcbe70e8150b347b6	0	0	anol	237	LQ000164	1	0	0	f	f	\N	0	\N	\N	0	\N
54	Kaci Nolan	tkirlin@example.net	\N	$2y$12$GrFjbwyh7kI1wYcZ0emGQeb0MW7x24hWw1aAMsUYnMP2NY2wgbEGq	\N	2025-05-23 10:22:02	2025-05-23 10:22:02	\N	\N	+91	710687087	160	\N	1	\N	2	Male		1970-07-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Kianna Hahn	\N	LQ265109	1	0	0	f	f	\N	0	\N	\N	0	\N
55	Miss Dora Hyatt	cassin.paolo@example.org	\N	$2y$12$J5TxAJ5BEN7mFXKHJ6hmoevYdIaPH0oSZFBIBs2EW1.GtCga8RQiO	\N	2025-05-23 10:22:03	2025-05-23 10:22:03	\N	\N	+44	794397864	23	\N	1	\N	2	Female		1988-05-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Amie Trantow	\N	LQ953843	1	0	0	f	f	\N	0	\N	\N	0	\N
56	Jarod Lind	rdamore@example.net	\N	$2y$12$eWf0sY3jTO68vK2lIc1RIe3a8pQf82R2hzPaSM.TsH4t3rReLES6m	\N	2025-05-23 10:22:03	2025-05-23 10:22:03	\N	\N	+91	495843963	47	\N	1	\N	2	Male		1987-09-22	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Waylon Kerluke	\N	LQ281354	1	0	0	f	f	\N	0	\N	\N	0	\N
155	Hamid	dx005@gmail.com	2025-05-23 18:20:44	$2y$12$PT2RxQs7qJV7qMPBHTdaZ.tKH/FQbPYV.08TbWESUZ3dPOVcNf.Ci	\N	2025-05-23 18:20:44	2025-05-23 18:20:44	\N	\N	971	345454545	169	\N	1	\N	2	Male	\N	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	c5d52829dc092bf9b2c73fc3ec4d1c5bbff46a0b63160e831558c7cc5d16a912	0	0	Raza	\N	LQ000155	1	0	0	f	f	\N	0	\N	\N	0	\N
198	Ameera Raza	ameera@dx.com	2025-05-31 16:40:58	$2y$12$zq2l4V9dHl6kNL8ed3UUSu9QLblWGr7Io95O00KyKzDGPBYDarcYW	\N	2025-05-29 17:28:49	2025-05-31 16:40:58	\N	\N	971	346464648	\N	\N	1	\N	2	Female	6838997c2db3b_1748539772.	2007-05-29	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	7553e43adf821f7b6c7c3b22b8949246c5c7e2b2e7fb7a207882904173b8f296	1	0	Ameera	237	LQ000198	0	0	0	f	f	-ORS4iY_24cyYTgvJxvK	0	Hamid Raza	razahamid34@gmail.com	0	\N
187	Alina	alina@dx.com	2025-05-28 17:28:00	$2y$12$dYZtHGaJaRYwpsnAmtoHl.BhzNLNv/W9vJ5mWaUDoGCn.EBxwav/O	\N	2025-05-28 17:28:00	2025-05-28 17:28:05	\N	\N	92	346466464	\N	\N	1	\N	2	Female	\N	2007-05-28	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	d3b985ebaef2745f858ebe2f3a31d95c68e5800f06097100960e580edf2380bb	0	0	Alina	237	LQ000187	0	0	0	f	f	-ORMvwt_mYOM6_SryhyZ	0	Alina ali	ali@dx.com	0	\N
181	FemaleTwo	hamidiqbalgoraya@gmail.com	2025-05-27 18:16:10	$2y$12$TFnoOLG0lFBPaSF4zxb7oe1NTvtDZQ0LRDk/1B8oNAl4ZC6h4F47q	\N	2025-05-27 18:16:10	2025-05-27 18:18:57	\N	\N	971	645457575	\N	\N	1	\N	2	Female	68360189b2a91_1748369801.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	dba4463c1ef772d702379e653b833c2b448a458bb53eb3ed2ba8beff2ada3476	0	0	Hi	237	LQ000181	1	0	0	f	f	-ORHxN_7tpZ69nXer0kA	0	\N	\N	0	\N
165	Mudassar Zahid	mudasserzahid48+12@gmail.com	2025-05-28 06:06:59	$2y$12$ifvENHKbcoiR6bztZQdwp.TBIKtWzWuwOgCPI4P44OxhX9O0fFl4W	\N	2025-05-27 04:52:40	2025-05-28 06:06:59	\N	\N	+971	1633481264	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	4d99c51df924e40769bcb0ab80e637790986a69c1ebe3038e85669aaf5a1ef1c	1	0	Mudassar	1	LQ000165	1	0	0	f	f	-ORF4sAuEIVEekPnuuDL	0	\N	\N	0	\N
194	James Wilson	james@gmail.com	2025-05-30 11:07:14	$2y$12$3LJWHRCZ.AAmLtkfnAHoPu2kdN2.c4YhBw47ovEJlFwl0WEzJoZJy	\N	2025-05-29 08:07:31	2025-05-30 11:07:14	\N	\N	1	561667774	\N	\N	1	\N	2	Male	6838162b2b02f_1748506155.	1985-08-21	0	android	dJzmE0kbRsK2cm4lsg6Kqb:APA91bGOKg0RHQKon6IYdT_4LVydsWjtldnewhWO7uVRjnI_85gXmX7A000Mtkvoa2AJD_KXVnajfzi73gWI9XReTEI4Ynw1FNZfLoR70d-lVfIzOKGO5Qc	\N		\N	\N	\N	0	1	f768b89b2ac75a561d64c365f9c0cb77e5c4222884755a14d38445f655d80098	1	0	James	237	LQ000194	1	0	0	f	f	-ORQ4FFc3TwQGbI-jjhj	1	\N	\N	1	\N
175	Full	dx030@gmail.com	2025-05-27 08:31:31	$2y$12$sHDNPezBYw9l.HFBdJp4W.gSgrdk3qDFDnTGjVQwNFzGpA7196Tzi	\N	2025-05-27 08:31:31	2025-05-27 08:32:02	\N	\N	971	242424224	\N	\N	1	\N	2	Female	683578822ed3f_1748334722.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	04211fd8f966b0f35c3529b619eae808e60e98a0f48835cf8af72554c0b7cb72	0	0	Flow	237	LQ000175	0	0	0	f	f	-ORFrZWq-TLh611O7AV-	0	\N	\N	0	\N
225	Simian kh	hibaejaz97+7@gmail.com	2025-06-04 08:24:54	$2y$12$09dV06dV2Lt9G90fHK8LBOUcKvbjZDoKFVA9VExcYTT5axzQLB7HC	\N	2025-06-04 08:22:58	2025-06-04 08:24:54	\N	\N	971	561669877	\N	\N	1	\N	2	Female	68400277edc47_1749025399.	2007-06-04	0	android	fB2uCsnRSpayYoJ7Ye2e4u:APA91bH20SpGtUI0RnKAbXjJ40LGSTmi5fus6bRmYw5y_-qvo46_LLSdIild4qQ_Fgky3LYdpJZ665megap5TXL8NU8VX4TgTk2NRA8_1l3ppXgFthN6qHE	\N		\N	\N	\N	0	1	9802d286226449ecf28a03943a570238ce77e9c9be4c042cd0c3a520895ee6ea	1	0	Simo	237	LQ000225	2	0	0	f	f	-ORu1K65cpxUo8hHTNGf	0	Khan	hibaejaz97+8@gmail.com	0	\N
205	Mudassar Zahid	mudasserzahid48+22@gmail.com	2025-05-30 14:00:15	$2y$12$2yDjhshkkuwALCaTXuD6o.rxZqwBqJ6SuJ7a8U6taLpupYiTJn9au	\N	2025-05-30 14:00:15	2025-05-30 14:00:17	\N	\N	+971	1633481284	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	ae421555b9cd6ac403f2dc887bd4c90906c464c70dda956d87199bcc7c23b7bd	0	0	Mudassar	1	LQ000205	1	0	0	f	f	-ORWU_-Rn7Ahwm266ECq	0	\N	\N	0	\N
215	Basic Sheikh	hibaejaz97+2@gmail.com	2025-06-10 13:08:47	$2y$12$JLRhAas02cC.Zn3xT3tc.eLoFzbom02W7rst2w5X8hNdgKadvN09e	\N	2025-06-03 05:21:54	2025-06-10 13:15:12	\N	\N	971	561998745	1	5	1	\N	2	Male	683e868a825a6_1748928138.	1995-06-30	0	android	dRn-fu7cRRuAjsH9S53AyT:APA91bHsREFjutiSZG-Jp9rLKq-lcyOWaq_aJAXCA0thfZKz5Wq_vuhclfBycfaI1EEwEWC_demluCxa3aaj7AxnL4-_ZtHlxHdMmGM-ZnxYhw44KvWZy4E	\N		\N	\N	\N	0	1	7c545f373e38f1780f500f18d5616dde1c914f2d83589b22fde1bea943e52a33	1	0	Basit	237	LQ000215	1	0	0	f	f	-ORoEI2HZ930ERb2IC9H	1	\N	\N	1	\N
235	Notification	razahamid34+13@gmail.com	2025-06-05 10:30:24	$2y$12$.WCweMXi3o5c1ss.GD8rJugXiCPEaGjBj278XIRDlZ.5ioX9g3MYa	\N	2025-06-05 10:16:36	2025-06-05 10:31:01	\N	\N	971	344415624	\N	\N	1	\N	2	Male	\N	2007-06-05	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	9e63417c15656c43283c2525fac52063954160886a47013410ec44e22ba690f0	0	0	Test	237	LQ000235	1	0	0	f	f	-ORzd4WuRtBrijtL4vLU	1	\N	\N	1	\N
259	Mudassar Zahid	sabeeh48+26@gmail.com	2025-07-11 15:06:09	$2y$12$itmF87r2Z0vA6RG5gSqaVu7wTbL51qlVWBjLbUK49javHB79HZ8zK	\N	2025-07-11 15:06:09	2025-07-11 15:06:14	\N	\N	+971	16331288	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	cf8343b1c3f04319df9852e72aaa14985cc001d12bdf094005629467fa93a8c1	0	0	Mudassar	1	LQ000259	1	0	0	f	f	-OUu0QyvIgCVnw1QVaKk	0	Sabeeh	sabeeh.shah+15@gmail.com	0	\N
245	Wasi Ahmed	hibaejaz97+16@gmail.com	2025-07-13 02:12:09	$2y$12$u.lWFurLbQe28sqaWqyGau5ND2VIL94Nnj1IOXNSps7IlPhgBbXSS	\N	2025-06-11 09:55:14	2025-07-13 02:17:01	\N	\N	971	561997040	1	3	1	\N	2	Male	684955ab910f5_1749636523.	1993-06-11	0	android	ewV05derRc2r3bgbg5xFXR:APA91bG0vtR-oXWxFu_b5vAzC_iS2SCq7TWkipMq4UOn9wYdnJlv2X7-mcVsVXOw5lhGK8EyI5tCwocgQZvUgWbqvXc7TtLKgH2CwK7JQeN-uExNPLyLXjc	\N		\N	\N	\N	0	1	c7eb2b0290935162ac6769072d93ad50b1c5aace6a59164bbff87f1e7d127b86	1	0	Wasi	18	LQ000245	1	0	0	f	f	-OSTP_5Z_GqtAzLnYvFn	1	\N	\N	1	\N
268	Mega Sharma	hibaejaz97+21@gmail.com	2025-07-14 04:45:27	$2y$12$r2G3/t559q6OrMxZUkbPJedsM0VZfd2Z3FN8P4Gih6.SW05c.Pfyi	\N	2025-07-13 11:10:11	2025-07-14 04:45:27	\N	\N	971	561660158	1	1	1	\N	2	Female	\N	1987-07-13	0	ios	eDG_yjDzQze5OO3Qiw5Qm6:APA91bFqKg9TCVOPBUXTiJieWprWr1xMJvN0GJzq92oi4Ij_1zLAKf8qZ9FwEgim2tPhVZxaKlqvNxdxolLb7bAh6bU_yciOb6yK8KjBiiJT7yjwAkIG7So	\N		\N	\N	\N	0	1	2b5b994afa68a61a346be524af4731c6a08cd0ff0c1ce61463200030283898f7	1	0	Mega	103	LQ000268	1	0	0	f	f	-OV2TatHxBeLG3MH9LCV	1	Sawed lhan	saed@gmail.com	1	\N
206	Mudassar Zahid	mudasserzahid48+23@gmail.com	2025-05-30 14:02:36	$2y$12$LXF4f5u6.wCeDNvLKOGdMu0bCLmuGDYbWkVnEobvQQbMtotpets2a	\N	2025-05-30 14:02:36	2025-05-30 14:02:36	\N	\N	+971	1633481285	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	31284616d1ac0a2621f786c1b47d67650013bbfdd733e8cad56f82f0ba700025	0	0	Mudassar	1	LQ000206	1	0	0	f	f	\N	0	\N	\N	0	\N
156	Hamid	dx006@gmail.com	2025-05-23 18:24:04	$2y$12$4qcO/5vKkj2cV.hBwGuW2uBP8Bfbc0SWpEjGj.Lz9iCIHsMKnDtn2	\N	2025-05-23 18:24:04	2025-05-23 18:24:16	\N	\N	971	346576767	1	\N	1	\N	2	Female	6830bd509b1d0_1748024656.	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	963cf269d3bbbd8972db0a932500c22065ff69b2dbddde2b431ae63cedbb1b9f	0	0	Raza	\N	LQ000156	0	0	0	f	f	\N	0	\N	\N	0	\N
188	Mudassar Zahid	mudasserzahid48+19@gmail.com	2025-05-28 17:36:48	$2y$12$r7vkVc02CqFqUKC55t0cCuT9JiZJeTJWSYgLR4/veVmg7h09JYRAa	\N	2025-05-28 17:36:48	2025-05-28 17:36:52	\N	\N	+971	1633481281	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	ee7ccb9bcd159bb0ea8bc36652f765135d477beb908973d88023e5ce9b4844db	0	0	Mudassar	1	LQ000188	1	0	0	f	f	-ORMxxbEMALcLmRFOUKB	0	\N	\N	0	\N
166	Mudassar Zahid	asheok2s21@gmail.com	2025-05-27 05:03:03	$2y$12$eidUx5cBqfPz3nzxjJivoepIBGmVCuNv3OKqUGT0KGiZqV2Mg1kx2	\N	2025-05-27 05:03:03	2025-05-27 05:03:07	\N	\N	+971	123311410271	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	fcfb7a50009b069c7b571af87a6e4e6531c64ec3385078cead134480652105d2	0	0	Mudassar	1	LQ000166	0	0	0	f	f	-ORF6qgAUVTNmiRwFfhg	0	\N	\N	0	\N
182	Ariba Ahmed	ariba@gmail.com__deleted_acount182	2025-05-28 05:04:49	$2y$12$O4VqurqeSw6yqOPjdyev8uoFdeOTdOFSRbFwQIc8scOBw1NCUO2me	\N	2025-05-28 05:04:49	2025-05-28 06:44:27	\N	\N	971	561889674__deleted_acount182	\N	\N	0	\N	2	Female	68369bed734dd_1748409325.	2000-10-30	0	android				\N	\N	\N	0	1		0	1	Ariba	237	LQ000182	0	0	0	f	f	-ORKGqKNvAtJIOrBAtzq	0	\N	\N	0	\N
176	HAMID	dx032@gmail.com	2025-05-28 09:52:26	$2y$12$0yhD51M/eSm28ebt64hts.Z0ApOLop1bjJAy9FwcazNbRwr6z.5dq	\N	2025-05-27 08:44:19	2025-05-28 09:52:26	\N	\N	971	346464646	\N	\N	1	\N	2	Female	68357b757cde5_1748335477.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	955789b1f0a175afb5f7ac498d17bf7a8a6b904482c93fd24e19d15c0bb75b98	1	0	raza	237	LQ000176	0	0	0	f	f	-ORFuUsgGt-0DaqP2sDD	0	\N	\N	0	\N
226	Disease	razahamid34+10@gmail.com	2025-06-04 12:13:01	$2y$12$v5CZDmQ2jBd7KOuvhknBYuSsTSQauCd29voq4Kt9vOGvewfTADKwq	\N	2025-06-04 12:13:01	2025-06-04 12:14:57	\N	\N	971	245457575	\N	\N	1	\N	2	Male	\N	2007-06-04	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	5121ebcf9704967ea9442c535a6cf2c010ea7205883dfce92b99f0787e1b80b5	0	0	Test	237	LQ000226	1	0	0	f	f	-ORuqyzw9u0BGpZI5smA	1	\N	\N	1	\N
246	Sara	halao91@gmail.com	2025-06-11 10:02:58	$2y$12$4IghCGoOZSHEXP3uZm536.i5tQ17DmQyTLeXA6aadOqMY/qygidB2	\N	2025-06-11 09:55:34	2025-06-11 10:11:39	\N	\N	971	506529697	1	1	1	\N	2	Female	684952b217088_1749635762.	2004-05-09	0	android	dIVnhuinQnOCxlZU5JKWqe:APA91bGiOrgqs9DDdVgtcK3tu20houa-PHZr175hTwnGZIb40mImN-bExxdN9JHMQgrgQeFlrA6seKz4t8Ng55lm0hIAJih8vgcUX4EFrHAMiz5J5uW7PVo	\N			2025-06-11 10:01:40	0	0	1	2860d6cdb2328b6048445ccbb0043332e4bae9b240e2c1efb57e091395cece52	1	0	Sosoi	237	LQ000246	1	0	0	f	f	-OSTPdo5OyF6UJhqi7Wg	1	Hala	hibaejaz97+18@gmail.com	1	\N
195	Anil	navis@navis.com	2025-06-28 07:44:44	$2y$12$vVx86n6I0cB1S9u.I91DG.ysYu4h9Arv4N5k6HX4oo2aedr55ReFC	\N	2025-05-29 08:17:16	2025-06-28 08:11:01	\N	\N	971	466484694	\N	\N	1	\N	2	Male	\N	2005-04-14	0	android	flMmOvhkRgWVjzZTiS41c8:APA91bFef8lBRpvmOaQ0_MzJhjG09YSyM4TtbfYqS67k3erBLksFUP4M2zAbZ878TgfgeGdM_fuNYUspu1DP0fJ3psdUnbhbz2GRUQ_AEVveAooEiYVcxeQ	\N		\N	\N	\N	0	1	57ee28cc825036f0cb820bce8cb745e714402b2e1abadc9a6e509d8a9d5ed40a	1	0	Nahis	237	LQ000195	1	0	0	f	f	-ORQ6U6KWQ1SLLgcOQ4r	1	\N	\N	1	\N
199	Female two	femaletwo@dx.com	2025-05-30 11:03:42	$2y$12$wrI9/pFVzI122mi8/vbBDO8/agclMIK/.uEUphc17jap0YlR9uGN.	\N	2025-05-30 10:52:09	2025-05-30 11:03:42	\N	\N	971	243434373	\N	\N	1	\N	2	Female	\N	2007-05-30	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	9eafa152177f83126315945689e55d5440c3515b0a7625265c3ec6cde1475e6e	1	0	Female	237	LQ000199	0	0	0	f	f	-ORVoWfKTrxzfw3XdN9S	0	Hamid	razahamid34@gmail.com	0	\N
236	Mudassar Zahid	mudasserzahid48+26@gmail.com	2025-06-05 10:21:01	$2y$12$T5Mbe4fs.q3GPGRyWsa3vuWDjp9vURrsUfmTifG.H0Lk4z6bkOuMG	\N	2025-06-05 10:21:01	2025-06-05 10:21:06	\N	\N	+971	1633481288	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	5cab1c416c51b8ec5f89b8a6563b38249555a29ba788c8f3db6714d5a6e6162a	0	0	Mudassar	1	LQ000236	1	0	0	f	f	-ORzawEnuaa1U5Vfw4fw	0	\N	\N	0	\N
216	Aisha Ahmed	hibaejaz97+3@gmail.com	2025-07-12 06:19:41	$2y$12$wFCVTnaxlPIqqzI51BF77.JIgX4znxqEXF3TyDA6Ro.NGL0Fsn3r.	\N	2025-06-03 08:33:38	2025-07-12 06:19:41	\N	\N	971	569874522	1	5	1	\N	2	Female	683eb3a976ac2_1748939689.	1995-06-03	0	android	eUXo2IhVQT2OPb6IcIVcnj:APA91bEzCXEwLncpLabuIU0RmhJu3YE4l1xdOTzvyzYRM_NiTZ9kb83tq8VXxXyGqKI_eQ4xymhuNFz1KQenm1_tLECczodL05OR-5rtGWfKuBFaydk1bt8	\N		\N	\N	\N	0	1	618d298012ce6a4a613ba0837439eaeac5a3f53eadd7938af9ddc666c9dab65e	1	0	Aisha	103	LQ000216	1	0	1	f	f	-ORovAmN_3CTd3lP13MO	1	Ahmed Khan	hibaejaz97+4@gmail.com	1	\N
247	Asad	asadnazir289@gmail.com	2025-07-04 19:35:50	$2y$12$jwiIX7QozTRTyj8snSBhSufb.r1ZbpJQ3BDtvNgf2IdcaLXrymiWu	\N	2025-06-23 21:05:53	2025-07-04 19:36:40	\N	\N	971	344156031	1	1	1	\N	2	Male	6859c1d6ee3c9_1750712790.	2007-06-24	0	android	cBEeU5drQ7-a2NQAotWASp:APA91bGAaippZcniJOtecVCBuiF6gUUB9mifn__uExHkttBYdlw4yJBDqUM4tjpaiixR2flQLzGsABcvG-fk0y_Vmav_MsnsP2OhbI1gcuADB6aNzGvlKlU	\N		bbf1645a2c3fbadd3effdaaa0d1f32c70b45ff4137a85f382b8dededcc1b0e54	2025-06-27 18:37:28	1111	0	1	503192ae147a17e60c6da59d9d8bba8707ecdfc68ee1f15c879b76a39135fb89	1	0	Nazir	237	LQ000247	1	0	1	f	f	-OTTb9FE1FowDNflF3Cm	1	\N	\N	1	\N
250	Hamid	razahamid341@gmail.com	2025-07-09 07:16:57	$2y$12$HyYmF.7oJoLqaH2GIwFoe.nWeZvL6pSIauAR62533Z42U6JQcYYM.	\N	2025-07-09 07:16:57	2025-07-09 07:19:00	\N	\N	971	344156555	1	1	1	\N	2	Male	686e178b755e0_1752045451.	1996-07-09	0	android	cjg0vSR5R1KAygtxOOKT77:APA91bGRLVR6JDLA7r1GPYDafp0Vfq1dFQNbbaj7emPL5vt1x8gQ2yoC-f55WlEl99Sy_DcGEGO2QhE7JVEFjHaaxzWDIBZiBV9VHYVQOXOrd75mTUS5TU8			\N	\N	\N	0	1	0397bc17836c7ccbfea8aabc846a6182e9a7ee6a00f01b3c21b3f5427f10e426	0	0	HamidRaza	237	LQ000250	1	0	1	f	f	-OUi1rKfIxo_50wPK1w7	1	\N	\N	1	\N
157	Hamid	dx009@gmail.com	2025-05-23 21:35:48	$2y$12$wSPY6GDwfiED45fRBhmw5utyL0ozNksj0g3G/u5DfxW5DDQepzS9m	\N	2025-05-23 21:35:48	2025-05-23 21:36:52	\N	\N	971	366557575	1	\N	1	\N	2	Female	6830ea74090f9_1748036212.	2025-05-24	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	37934dc921d5b1f42c9cb2107db38459a41bf657733d42092812382fc8af2b79	0	0	Raza	\N	LQ000157	0	0	0	f	f	\N	0	\N	\N	0	\N
183	Ria	ria@gmail.com	2025-05-28 06:14:20	$2y$12$RdKjqP7O9OmxFMaNiPogeuOkC.VunjlYOVXkkq03nsvv98M3Wx8j6	\N	2025-05-28 06:09:29	2025-05-28 06:14:20	\N	\N	971	523243164	\N	\N	1	\N	2	Female	\N	2006-02-01	0	android	eKafLVQKSs-Ep03v7lRMdP:APA91bH8yp1Gy_jCX1erp2QarhW3uOsjuGegBJ8r0TP0G8lYzH3eFCTU7dk-oKGA1t1kCP33b3OBj3xVheyUW2eCVa-kLQq5SSUVNlcu9-NJhRK2FNWPd9s	\N		\N	\N	\N	0	1	ec0523becd61c3f1bbde65a877f041597dae7acdfc29b60b227ae7e7021f36fd	1	0	Ria	237	LQ000183	0	0	0	f	f	-ORKVddWTS06oVFjEySR	0	\N	\N	0	\N
251	Hamif	hamid001@gmail.com__deleted_acount251	2025-07-11 14:28:08	$2y$12$5pxPlgwdnFDp5WQa8nC2gONbYZ5qw2r8VG60eLyQSmzOYMOXurMry	\N	2025-07-09 10:44:36	2025-07-11 14:28:22	\N	\N	971	344664676__deleted_acount251	\N	\N	0	\N	2	Male	\N	1996-07-09	0	android		\N		\N	\N	\N	0	1		1	1	HamidRaza	237	LQ000251	1	0	1	f	f	-OUimODZkBcm44fWczQ1	1	\N	\N	1	\N
177	Anil Anil	anil@anil.com	2025-05-27 12:23:10	$2y$12$j9.ByNMTbY/1wmCAGZDHSuqXLfL5OcI.IY8VNES9Kad9rZQw2yyP6	\N	2025-05-27 12:23:10	2025-05-27 12:26:44	\N	\N	971	564005097	\N	\N	1	\N	2	Male	6835af847d92b_1748348804.	2003-11-25	0	android	e11RTznXQxecp6vWgW2qEo:APA91bHxImYTvSkU5e6uxPYCPKyTTZlZ8RNmlqFOLGlJgWGT2PRaDt2LjNyqpwlrNKWJnia04iyi0w6nxVYhCSqerp5F6xD3P-M9wt0YUeWk2LTqSIzseH8			\N	\N	\N	0	1	46be1f95dcc59a924d563eb0217a6bd78b8b71b16e1a4b9310f13393bbe7fc2e	0	0	Anilnav	237	LQ000177	1	0	0	f	f	-ORGg_ksF_UWo4mkzfWQ	0	\N	\N	0	\N
200	Rohan Khan	hibaejaz97@gmail.com__deleted_acount200	2025-05-30 11:24:09	$2y$12$H2lfZzivDfCslXKnxhOfjOLgoj67R7dYSueJSUKud2T1XdR5GdXVS	\N	2025-05-30 11:24:09	2025-05-30 12:23:54	\N	\N	971	561668577__deleted_acount200	1	3	0	\N	2	Male	68399577cee07_1748604279.	1990-05-30	0	android				\N	\N	\N	0	1		0	1	Rohan	169	LQ000200	1	0	0	f	f	-ORVvqXdNk5n1JqRBVxs	1	\N	\N	1	\N
196	Tuaib Ahmed	tuaib@gmail.cim	2025-05-30 10:35:36	$2y$12$8xaPrFmRxoFulzNyoRPTluOsbt6I.AU.P4dOdNUnP7gc2AerrwJIm	\N	2025-05-29 08:36:27	2025-05-30 10:35:36	\N	\N	971	561660899	\N	\N	1	\N	2	Male	68381ca50f920_1748507813.	1990-11-28	0	android	dJzmE0kbRsK2cm4lsg6Kqb:APA91bGOKg0RHQKon6IYdT_4LVydsWjtldnewhWO7uVRjnI_85gXmX7A000Mtkvoa2AJD_KXVnajfzi73gWI9XReTEI4Ynw1FNZfLoR70d-lVfIzOKGO5Qc	\N		\N	\N	\N	0	1	93a96d5be6f865f5f25615afaf764be984744962daf39747bd5ffbfa3f524218	1	0	Tuaib	237	LQ000196	1	0	0	f	f	-ORQAsFXBrlZtwe9Xile	1	\N	\N	1	\N
189	New user	user@dx.com	2025-05-28 17:41:44	$2y$12$n9YvBNzkuHIUtRzF/jRjw.BgZi.XViVfZ0v/.2m6WGB5F1c/bWhoS	\N	2025-05-28 17:39:51	2025-05-28 17:43:10	\N	\N	971	243464664	\N	\N	1	\N	2	Female	\N	2007-05-28	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	a5085175e44904c01d5c1d5346fe91d12a427299d4ef39e95c3e9ab071641641	1	0	User	237	LQ000189	1	0	0	f	f	-ORMyeGvdOGVYMxjzdSq	1	Hamid	razahamid34@gmail.com	1	\N
237	Ali Zahid	mudasserzahid48+30@gmail.com	2025-06-05 12:29:19	$2y$12$YPr7NItz3jpQrIk8Xo9pC.bvgdq4h8qtmxIcVaEQaStCTdRQGYPPa	\N	2025-06-05 12:01:21	2025-06-05 12:30:16	\N	\N	971	321546798	1	3	1	\N	2	Male	68418766411e4_1749124966.	2000-08-08	0	android	dFJjM7eGS0-WaAMWyPtlzm:APA91bFvdIQoJiLCimXKQ6y6d8ukVahcvbU72NSwZ7bx_yLg7erNMpRUeAAI_wSVoZ-vRPyc8qxfdeHcEs-GVMmVzuBPg1x3YKMjOTXG0dKIGJ3Y1wohefk	\N		\N	\N	\N	0	1	b39eb5a3a07f6c90288dcfaa95e993930dda859e114d78d2aeb477c81d022521	1	0	Ali	237	LQ000237	1	0	0	f	f	-ORzxtqkWaSuk-Q63vWV	1	\N	\N	1	\N
207	Mudassar Zahid	mudasserzahid48+24@gmail.com	2025-05-30 14:05:10	$2y$12$i3MS4hG1xCA.7agtPC1c8eXvIlf8uhscWVCLHak4EwkD9rnlUTCg2	\N	2025-05-30 14:05:10	2025-05-30 14:05:10	\N	\N	+971	1633481286	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	9d9d6eb90d76c1b1ed93064ce39595d35bb16ec185e1bcf9431a1c0756133da8	0	0	Mudassar	1	LQ000207	1	0	0	f	f	\N	0	\N	\N	0	\N
217	Ashok Mehta	ashok211@gmail.com	2025-06-03 13:24:33	$2y$12$v8S6nQqeMJwzeiZlt/4qkORj1qi/UN5qjZGpXRuVP/ZPUPd5GWWXS	\N	2025-06-03 13:20:23	2025-06-03 13:24:33	\N	\N	+971	9839143430	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasdfasd	\N		\N	\N	\N	0	1	dcb96635340e0120988785b01bc4508408037bdc97a2fd733b2dd0f3c5fcfa27	1	0	ashokmehta	1	LQ000217	0	0	0	f	f	-ORpwoAEBI5oaDcdeN5l	0	aa	ewe@gmail.c	0	\N
227	Auto	razahamid34+11@gmail.com	2025-06-04 16:55:03	$2y$12$/zJnjGEKmetd//9t7N5zNOEPUiLvatyvuTf1k2tphDBQJQkbTYRLS	\N	2025-06-04 16:55:03	2025-06-05 06:23:44	\N	\N	971	345467667	\N	\N	1	\N	2	Female	\N	2007-06-04	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	a3778af7e31024657f0488a906ec9fd2e6f6e7e61945114454bfd10ffa54e587	0	0	Refresh	237	LQ000227	1	0	0	t	t	-ORvrXJ4svVRGYIuIyT1	1	Hamid	razahamid34@gmail.com	1	\N
248	Usama Shakeel	ushakeel@gmail.com	2025-06-27 14:51:05	$2y$12$aFklfzUU8H7zAlEoJjwvjO4pmSMTuFHm451QBtnbF33mcfOw.Lb9y	\N	2025-06-27 14:51:05	2025-06-27 14:54:02	\N	\N	971	123123123	1	1	1	\N	2	Male	\N	2025-06-27	0	ios	fcm_token			\N	\N	\N	0	1	56a962fe671fc5098192cc6569467b7a85a4087b11ff2592535257c5b041f7ee	0	0	Usama	237	LQ000248	1	0	0	f	f	-OTlrinV6uYhUBXqCSKt	1	\N	\N	1	\N
260	Hamid femail	razahamid34+101@gmail.com	2025-07-14 05:54:00	$2y$12$L/E4h9r/FjBg1lnFsEPvTuuWfjGRBMT9dACWGeOj6Sshi6ii6zKwy	\N	2025-07-11 15:09:28	2025-07-14 05:54:00	\N	\N	971	646464648	\N	\N	1	\N	2	Female	\N	2007-06-14	0	android	cjg0vSR5R1KAygtxOOKT77:APA91bGRLVR6JDLA7r1GPYDafp0Vfq1dFQNbbaj7emPL5vt1x8gQ2yoC-f55WlEl99Sy_DcGEGO2QhE7JVEFjHaaxzWDIBZiBV9VHYVQOXOrd75mTUS5TU8	\N			2025-07-13 13:55:16	0	0	1	f22dd28291680f4df420c4c3319da6163d07f6efeb146c692af6ce82bb1ce21d	1	0	FemailValifation	237	LQ000260	1	0	0	f	f	-OUu1B_OyOx66jjs9hfM	1	Hamid hajaj	razahamid34+102@gmail.com	1	\N
269	Hamid Raza	razahamid34+141@gmail.com	2025-07-13 13:59:36	$2y$12$O7z5a72vea1D.9FjMyL4KuwA8lcJ8ZTvYHr3Eoevp/7YKCZ4dP7vK	\N	2025-07-13 13:59:36	2025-07-13 14:02:24	\N	\N	971	376767667	1	1	1	\N	2	Male	\N	2007-07-13	0	android				\N	\N	\N	0	1		0	0	Raza	237	LQ000269	1	0	0	f	f	-OV34Ng7NTXQZTRChr2A	1	\N	\N	1	\N
208	Test	testdxb18@gmail.com	2025-05-30 14:18:33	$2y$12$BgFRo7OPwjveRcGBP5SdDui1C7USjF7TumsrLPwKGbOj8Ua8w77Mu	\N	2025-05-30 14:18:33	2025-05-30 14:18:36	\N	\N	971	561660788	\N	\N	1	\N	2	Male	\N	2007-03-07	0	android	dJzmE0kbRsK2cm4lsg6Kqb:APA91bGOKg0RHQKon6IYdT_4LVydsWjtldnewhWO7uVRjnI_85gXmX7A000Mtkvoa2AJD_KXVnajfzi73gWI9XReTEI4Ynw1FNZfLoR70d-lVfIzOKGO5Qc			\N	\N	\N	0	1	2bf39b1c68d951c2993654c40dbeeee30ffa22d286c035735ffafc1f7952df54	0	0	Trster	237	LQ000208	1	0	0	f	f	-ORWYlFGW2-VV0Q0lQBI	0	\N	\N	0	\N
158	Kareem Ahmed	hibadxba@hotmail.com	2025-05-24 07:45:47	$2y$12$FY/QayN26pOxALKYGmOKwuvDCvEO1etAFVMpfYXgfGD73y7cp/lP6	\N	2025-05-24 07:45:47	2025-05-24 07:47:28	\N	\N	971	561669874	237	\N	1	\N	2	Male	6831799012913_1748072848.	1991-05-24	0	android	dnZlOiHvS0CsltfExb8pTg:APA91bFvf8-MHTJkyweiRJMCSDQffuez1QHTXplVIuhIUTRqC_KFuFyJl4Rw-XRRVfLi6moJRLmUOMOU23DJAxnQesPz2CPn4j6yK4pJAPTpFgjiEQsSAOU			\N	\N	\N	0	1	8316ebbd3fc03a093001507442b63adffe25fceb452d91faaa0e5d667f0e5ae5	0	0	Kareem	\N	LQ000158	1	0	0	f	f	\N	0	\N	\N	0	\N
190	Mudassar Zahid	mudasserzahid48+20@gmail.com	2025-05-28 17:43:31	$2y$12$7hW2VGojXq9vEhuccYx2ROW8lDbGs5Uv.UAcwbKnWIR67pBiShbMC	\N	2025-05-28 17:43:31	2025-05-28 17:43:35	\N	\N	+971	1633481282	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	931ef45ac1b99305a1d9a93707708d852eb7e57c60c356fab09c2982c43f5c04	0	0	Mudassar	1	LQ000190	1	0	0	f	f	-ORMzV4HMWBjVeEV9xLf	0	\N	\N	0	\N
168	Ashok Mehta	ashokmehta1234y@gmail.com	2025-05-27 05:09:50	$2y$12$N1M0vs2AgwDF1ZNhjOQHteAUxG1/UJVejvilsCBs7pFbu9dyPHBn.	\N	2025-05-27 05:09:50	2025-05-27 05:09:54	\N	\N	+971	98133343434	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	73a505e0d00336092696e0638faa99b5952f7eecea1288b49e8dcf7a788da5d1	0	0	ashokmehta	1	LQ000168	0	0	0	f	f	-ORF8P5BtmvnrVPxFukU	0	\N	\N	0	\N
184	Ariba Ahmed	ariba@gmail.com	2025-05-28 06:48:05	$2y$12$DcY4Tkb13r7LCkhzpbeteurs5d/3xreOm59Ai.SlqbXuAaWG7XJ2e	\N	2025-05-28 06:47:16	2025-05-28 06:48:05	\N	\N	971	561660144	\N	\N	1	\N	2	Female	\N	2000-08-29	0	android	dLmseM_4RoK4qQSvabmirh:APA91bHLxQYEYc4kIUfLX0oqDZUY2AUTtmDU2jKMjIJDH0vxcVXBThVpcQWjjE0FhARqWhijFcbEGOu2eA1yY7MqmTn7c3gN2eSBn3AM_uhBsy4ohNZqn9k			\N	\N	\N	0	1	be57af2174ab142657222a4af2ff71ebb5b28e7c622bcc9ee59da96c262b93c9	0	0	Ariba	237	LQ000184	0	0	0	f	f	\N	0	\N	\N	0	\N
178	Mudassar Zahid	mudasserzahid48+15@gmail.com	2025-05-27 12:45:50	$2y$12$2yZUjixlGLPWqLOigkOX4OTZQPluGsXntFxSJ3067JYW8imJW0TNC	\N	2025-05-27 12:45:50	2025-05-27 12:47:00	\N	\N	+971	1633481267	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	94f6931e64b594e7fae18fea45ac982599a165b49b129037ee48ed3b6d03e6ba	0	0	Mudassar	1	LQ000178	1	0	0	f	f	-ORGllghLzSAjvF2ueIY	0	\N	\N	0	\N
228	Werda Farooq	hibaejaz97+8@gmail.com	2025-06-05 06:21:47	$2y$12$cWk7PeG5G9Na6ospt9vQ1eTkFJrjnV8Uc5jtne1b92mcc5hrYkQD2	\N	2025-06-05 06:21:47	2025-06-05 06:23:29	\N	\N	971	569788454	\N	\N	1	\N	2	Female	684137a7d9eb9_1749104551.	1995-06-05	0	android	c6EZXFRaReGW_XRiOUU1fr:APA91bF0O8oRUo8wVYWgH5xtpfuQYx2USvQd7o2mExfHfLE-8dZSkiaXUCcKssk_PSjsIETT5hOVknGgsM0yWzXuUPZ1mgM1ijwBOkpBaQVfehFen245uFQ			\N	\N	\N	0	1	3d24a3d840c865f55933272e3c7b7fd892ecf1483e83db344978b67dd5345e0e	0	0	Werda	237	LQ000228	2	0	0	f	f	-ORykAj0dLjOIjxwCvCt	0	Farroq Ahmed	hibaejaz97+9@gmail.com	0	\N
218	Mudassar Zahid	mudasserzahid48+25@gmail.com	2025-06-03 13:25:57	$2y$12$6rbaUhEiFMe6VKX6IL/TJOHIrkY/0/OGq1BfxMdWRfHa20jGyaZQy	\N	2025-06-03 13:25:31	2025-06-04 07:19:54	\N	\N	+971	163348128	237	\N	1	\N	2	Male	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	bc249b91f2baa0f0f8e74b8da4ae4ca5be59059d669d7effc3cb0b1a626dce2c	1	0	Mudassar	1	LQ000218	1	0	0	f	f	-ORpxzNCYRv2CzvrU-TH	0	\N	\N	0	\N
201	Zoya Noor	zoya@gmail.com__deleted_acount201	2025-05-30 11:34:19	$2y$12$4QkR0spUSz3JBtocNHPEu.keKDa/ebiotdUYa9ZINyXZK1QRnVJ1u	\N	2025-05-30 11:34:19	2025-05-30 12:25:38	\N	\N	971	561660874__deleted_acount201	\N	\N	0	\N	2	Female	683997da172e3_1748604890.	2000-05-30	0	android				\N	\N	\N	0	1		0	1	Zoya	237	LQ000201	0	0	0	f	f	-ORVyALnB9LEluz8beEy	0	Malik Sufyan	ajeshkumarcd@gmail.com	0	\N
252	Hamid Ios	hamidios001@gmail.com__deleted_acount252	2025-07-11 10:36:01	$2y$12$wqICoOeoUJcyIZ/1yr1GVOOFYn5NRkIMGtcx6PwItsAaRtavRwYQy	\N	2025-07-10 06:19:03	2025-07-11 11:42:26	\N	\N	971	453636636__deleted_acount252	1	1	0	\N	2	Male	686f5b76b4939_1752128374.	2007-07-10	0	ios		\N		\N	\N	\N	0	1		1	1	hamidios	237	LQ000252	1	0	1	f	f	-OUmzBuhK8iJlpXQvTA-	1	\N	\N	1	\N
238	Salam	salam@gmail.com	2025-06-06 13:04:38	$2y$12$bwdKB18lu/dpkbuQvGaCfe8fnix53dyspOcxhL3L8EIpA3WFFImKS	\N	2025-06-05 12:56:26	2025-06-06 13:05:33	\N	\N	971	225555555	1	1	1	\N	2	Male	684194651513d_1749128293.	1971-06-05	0	android	eyUYNRLlRsSPTORv-6g8yN:APA91bE4bG4rf0sMVGQp8-nrc4vPaRtXaTzX1DZMpw2Wqptkil6GP2SGDoHFyCbV8HfpcD3xeZ6dbhT-FkoMTNtQtvzarlLl56JlVjZlseEmEJUwaza7SXA	\N		\N	\N	\N	0	1	1107159cbc381e39dd64bcf28c9a0caef6f6f32a2709e3b5e6a17b4db15da153	1	0	Salm	237	LQ000238	1	0	1	f	t	-OS-9VpHVPg5f60gU3Ez	1	\N	\N	1	\N
249	Anil	g@g.com	2025-06-28 13:01:59	$2y$12$enCGL4mDr45zzw1TfYMfGeulY2t9KYIDFb/ecxqxghLwe/C5gto3S	\N	2025-06-28 13:01:59	2025-06-28 13:19:34	\N	\N	971	546646646	1	2	1	\N	2	Male	\N	2025-06-28	0	ios	fcm_token			\N	\N	\N	0	1	3f54675dd27e705a19871b4db29ce0ae3cbc9ac3912bfba5869766c31a061739	0	0	Navis	237	LQ000249	1	0	0	f	f	-OTqcLE4cNASGXisI-JN	1	\N	\N	1	\N
261	Hamid Raza	razahamid34+103@gmail.com	2025-07-12 12:03:11	$2y$12$RY8qmuptZhLNli2irRUiWe6YU57kZ35vuHMThZmrd..Quc6FcPoP6	\N	2025-07-11 15:11:30	2025-07-12 12:03:33	\N	\N	971	345467676	1	1	1	\N	2	Female	\N	1990-07-11	0	android		\N		\N	\N	\N	0	1		1	0	Nick name	237	LQ000261	1	0	0	f	f	-OUu1eERzX2WKaQzlNnb	1	Parent	razahamid34+104@gmail.com	1	\N
270	Hamid	razahamid34+25@gmail.com	2025-07-13 15:22:32	$2y$12$9dsUfprz11IwxWkp8AyoLe1Rjjlerj4o7ZRcQZBhu88p4xtS092ya	\N	2025-07-13 15:22:32	2025-07-14 05:49:23	\N	\N	971	376767697	1	1	1	\N	2	Male	\N	2007-07-13	0	android				\N	\N	\N	0	1		0	0	Raza	237	LQ000270	1	0	0	f	f	-OV3NMJOmOZCyl83Ua99	1	\N	\N	1	\N
179	Mahi Arora	hibaejaz79@yahoo.com	2025-05-29 18:10:47	$2y$12$CZ0mZN3AGHmxKkbDC40FGek4l/xwjc64P2p0nfirNnVf9xgnkYzHq	\N	2025-05-27 13:24:56	2025-05-29 18:11:04	\N	\N	971	561663270	1	1	1	\N	2	Female	6835bf0b04ca1_1748352779.	1998-12-30	0	android	dzrZ6KvSTR2jgwrr-TW293:APA91bGuu3tx7Qbm1l88xE4CHgeJ83fdwpo5iTnGg4cdofmgeio2LrtMv80WACHCM0NxBOCvT1ffIFZkSNyg9p3scSAaDJ1EcOs5UkomOIMsA3Ij5KLmGXk	\N			2025-05-28 09:55:07	0	0	1	35c34898c426e68f71c7213823074a2306364b65021ce91b2eecefe7d6c8da8d	1	0	Mahi	237	LQ000179	1	0	1	f	f	-ORGuiPOTqfyg_7xep6C	1	\N	\N	1	\N
229	Tara sheikh	hibaejaz97+10@gmail.com	2025-06-05 06:25:14	$2y$12$D.9jxk9.89WWWMlNIpgiAeE/zaVAdVBPCvCwuKB.jSUqBmxKAw3re	\N	2025-06-05 06:25:14	2025-06-05 06:31:51	\N	\N	971	561998755	1	6	1	\N	2	Female	6841386831a3b_1749104744.	1994-06-05	0	android	c6EZXFRaReGW_XRiOUU1fr:APA91bF0O8oRUo8wVYWgH5xtpfuQYx2USvQd7o2mExfHfLE-8dZSkiaXUCcKssk_PSjsIETT5hOVknGgsM0yWzXuUPZ1mgM1ijwBOkpBaQVfehFen245uFQ			\N	\N	\N	0	1	fe9d126dc11737bc7fd9dc14d97e233a91e4acd7fabcd794dea8a59cc363a791	0	0	Tara	237	LQ000229	1	0	0	f	f	-ORykyGI1Y_DuVBzmOh0	1	Sheikh Shah	hibaejaz97+11@gmail.com	0	\N
91	Vella Bradtke	ellsworth.klein@example.com	2025-05-28 09:45:04	$2y$12$x5cdfCEx/ii..ctJYLFwNO.wE6vryW.ov5KG/SwaWRt1rKLFnwNce	\N	2025-05-23 10:22:14	2025-05-28 09:45:04	\N	\N	+971	389534890	8	\N	1	\N	2	Female		1978-01-12	1	\N	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N	\N	\N	\N	\N	0	0	efe28249c10038ea7bc501f8a40d0e41aec1025bc72744c8cd926341a12ce152	1	0	Sarah Block	\N	LQ000091	0	0	0	f	f	\N	0	\N	\N	0	\N
169	Hamid	razahamd34@gmail.com	2025-05-27 05:15:33	$2y$12$KV2y/l5Ug1ikQiKt3.HrjOncienQdMu.VvMn2ob5SRr37KUQg0Hj6	\N	2025-05-27 05:15:33	2025-05-27 05:22:53	\N	\N	971	365255555	\N	\N	1	\N	2	Female	68354c2ccc538_1748323372.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	c36f493a3882db6d96644cb4097a5746b36249c0214c51d1917c8750569e3ccd	0	0	Raza	237	LQ000169	0	0	0	f	f	-ORF9hjhbgDburyt_yvE	0	\N	\N	0	\N
253	Anil	ans@ans.com__deleted_acount253	2025-07-12 05:12:54	$2y$12$ZOGiuRwPRj3jWkiIot6hZuS/TOLBcm/zSTRIt4wA2B3dlykGFYge6	\N	2025-07-10 14:34:32	2025-07-12 05:28:09	\N	\N	971	546645668__deleted_acount253	1	1	0	\N	2	Male	686fd0a7137ba_1752158375.	2025-07-10	0	ios		\N		\N	\N	\N	0	1		1	1	Navis	237	LQ000253	1	0	1	f	f	-OUokb6idf6MqxvA0z3J	1	\N	\N	1	\N
219	Sara Sara	sara2@gmail.com	2025-06-05 06:58:04	$2y$12$c8RQVGVGwvbAlWuKJs3sUeM0SVi.PtHxH5HDKV4hFd1RNdjLEO/kS	\N	2025-06-04 06:45:50	2025-06-05 06:58:04	\N	\N	971	568568666	1	1	1	\N	2	Female	683fec4a28159_1749019722.	2007-03-07	0	android	esn0ZJA8SOW3IZDC-EFCop:APA91bGKqg_0Thb0Ld7bOnvI97_WMAKDnzje9nZocuOaz9crTuD-Z8bU49ZSOrX0-h5FFYJu38TcXL5rW3mECJ-xG-vQnKCOSKMegNsuqacfhYxdYYjvayg	\N		\N	\N	\N	0	1	d5c3e79073f3474fb12744222f7d8bc0733f799b7381650fcc98eccea6d3799c	1	0	Sara New	237	LQ000219	1	0	1	f	f	-ORtg5Kzy7quynXk25tg	1	Sara mother	anil@dxbusinessgroup.com	1	\N
209	Marital status	razahamid34+1@gmail.com	2025-05-31 09:08:40	$2y$12$UuiZD.hPHkl5QyNW3GH7z.l8GN/ipGg3uC7nf9cBMGwSVpXjqCKJe	\N	2025-05-31 09:08:40	2025-05-31 09:09:46	\N	\N	971	345427575	1	1	1	\N	2	Male	\N	2007-05-31	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	fda5e9e0feb6cd628c0c76bbeab7cb702aa52af4be5922e98c02dd6a9280092b	0	0	Check	237	LQ000209	1	0	0	f	f	-OR_aQdUOJyCPBP5Ym83	1	\N	\N	1	\N
191	Gender dress	dress@dx.com	2025-05-28 17:51:05	$2y$12$W8xk3Qw/G1F1yxX46Ushxu6WfesQQTbKR20YsOuHUQkqfxWHoHtbG	\N	2025-05-28 17:51:05	2025-05-28 17:52:07	\N	\N	971	346464676	\N	\N	1	\N	2	Male	\N	2007-05-28	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	19daebf028a169027212e5d8f0fadb46be4c9e5491c7d741eb071d6f69945722	0	0	Male	237	LQ000191	1	0	0	f	f	-ORN0DrzcId-ZSrbheRm	1	\N	\N	1	\N
202	Rohan Khan	hibaejaz97+1@gmail.com	2025-05-30 12:28:12	$2y$12$K9ilKwVq/GNhssfx.cOZVO0qwnjXee9TyD0eSvdX.SAUteoenZiRS	\N	2025-05-30 12:28:12	2025-05-30 12:33:54	\N	\N	971	563224788	1	3	1	\N	2	Male	6839a48da6645_1748608141.	1990-06-20	0	android	e3eWiReSREuJhBoCBbY8lU:APA91bE2I5zZiJprqR_ricGp8me-l9rV8Gwx_75A7NhjMQO3ArX18z-lZUL2Iviz4zuSwCvDJ7nZc4veEngCCdMlTg8GJqVT2pW7rKZKB30viO6D3JYmqGY			\N	\N	\N	0	1	1ef6fa818afd142acd6abfa1529354ea2bf4ba6c9e3dfd5814877d390d5e1302	0	0	Rohan	169	LQ000202	1	0	0	f	f	-ORW9VdCNPyGppIKv3fU	1	\N	\N	1	\N
262	Umair	ans@ans.com	2025-07-13 19:20:42	$2y$12$bRF6o62QVfevk3r/12ty5ebCTWnItn2Gb4zT6S7DECP.QJT7THtiK	\N	2025-07-12 05:30:57	2025-07-13 20:13:41	\N	\N	971	546645668	1	1	1	\N	2	Male	6871f33083a34_1752298288.	1997-07-12	0	ios		\N		\N	\N	\N	0	1		1	0	Abdul	237	LQ000262	1	0	1	f	f	-OUx6MqhQHGhhnYafJ5D	1	\N	\N	1	\N
239	Salman	salman@gmail.com	2025-06-06 12:19:31	$2y$12$cncIdavhG6Bo47828vluRevkCYBCdSaMPo7lsjUYOj7NHH8/SOAmq	\N	2025-06-06 03:32:30	2025-06-06 12:19:31	\N	\N	971	987654321	1	1	1	\N	2	Male	68428eca8fc78_1749192394.	2006-04-04	0	android	eyUYNRLlRsSPTORv-6g8yN:APA91bE4bG4rf0sMVGQp8-nrc4vPaRtXaTzX1DZMpw2Wqptkil6GP2SGDoHFyCbV8HfpcD3xeZ6dbhT-FkoMTNtQtvzarlLl56JlVjZlseEmEJUwaza7SXA	\N		\N	\N	\N	0	1	d464ef6a9f605b5d39c3d52fcf5b984abe80aae946dbad70d75e4f24444ef8f4	1	0	Khan	237	LQ000239	1	0	1	f	t	-OS2I0mA5gPAnBh0_obI	1	\N	\N	1	\N
271	Hunain	abc@abc.com	2025-07-13 20:16:01	$2y$12$DwiL3Ckj3AIYznraCGsDLe.4J0t09D7Uk8CphDzfF6oUXu0GV5vey	\N	2025-07-13 20:16:01	2025-07-13 21:18:54	\N	\N	971	545646642	1	1	1	\N	2	Male	687414a761f46_1752437927.	1992-07-13	0	ios	e3rUQ9EzvEV_v4Z9fN3Bki:APA91bEqX3kxtHGeCxUQW86uxuFlnsqOSxnrZ9zl7lgoT-5dgNjGtOn2ON9BvydzROqX1xH0XY4rU_CU7o39pB8zM9HY547lQy6rbvHCzCF5J6OcGkxZ68c			\N	\N	\N	0	1	1f0866a36fde2ffbd87f4e8475d58b0f0416b5fc17ca9df565e6f9a77755f5ef	0	0	Ahmed	5	LQ000271	1	0	1	f	f	-OV4QXWV-y5-uXJZo6b7	1	\N	\N	1	\N
170	Mudassar Zahid	dx1001@gmail.com	2025-05-27 05:42:18	$2y$12$u/Q2oMdRfBVpAuhBSccf5upavr5WY/uBCvQThu7CbSou9gpvf639u	\N	2025-05-27 05:42:18	2025-05-27 05:42:22	\N	\N	+971	55555555	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	fd348f3d209c35e9fbbdc986bc096a26fb9c6c7713b52828fd5eeda60291e750	0	0	Mudassar	1	LQ000170	0	0	0	f	f	-ORFFpkfDtePNBDc2k8N	0	\N	\N	0	\N
230	Ram	ajeshkumarcd@gmail.com	2025-06-11 08:00:51	$2y$12$14ocbV0yJriaJTg9qL0ld.mKv0Ecj40N83R9IJNkvOQ17M8ptEbba	\N	2025-06-05 07:01:06	2025-06-11 08:00:51	\N	\N	971	505041860	1	1	1	\N	2	Male	684140fe039bd_1749106942.	1987-06-18	0	android	fn_nBrA9TdW_zjiV_XxZgJ:APA91bG1RaECCOsT9xWJ1tcYgf6STS7Ie7qtt1w1_u24d0A_gIRuZ7ospQfstZbhXn6k8XbyfGZgII1Ya1zQds3kmLSviZNvpO04QADFcZU-snSXSYQ7kVo	\N			2025-06-11 08:00:07	0	0	1	b6f96ff5a34759c17cd281e7417f5e7893e16bca2c11dfa55a2fdd90e26709b0	1	0	Ramkumar	237	LQ000230	1	0	1	t	t	-ORytAki6siBSr2HxyMm	1	\N	\N	1	\N
192	Gender dres	female@dx.com	2025-06-06 07:19:14	$2y$12$FV4OXUeuyjSpfO3vmtPIqupDpv8xupBG5MgkCaqq/NGwfgkAhqUIG	\N	2025-05-28 17:53:13	2025-06-06 12:22:12	\N	\N	971	346646499	\N	\N	1	\N	2	Female	68419a5d79ad0_1749129821.	2007-05-28	0	android	cjg0vSR5R1KAygtxOOKT77:APA91bGRLVR6JDLA7r1GPYDafp0Vfq1dFQNbbaj7emPL5vt1x8gQ2yoC-f55WlEl99Sy_DcGEGO2QhE7JVEFjHaaxzWDIBZiBV9VHYVQOXOrd75mTUS5TU8	\N		\N	\N	\N	0	1	0fe36f668649c85d5772ffb4095ee0ac1bf5ade12f9d964aa217e82a85f53ce3	1	0	Female	237	LQ000192	1	0	0	f	f	-ORN0iJ78NapMPNFSrZg	1	Hamid	razahamid34@gmail.com	1	3
203	Mudassar Zahid	mudasserzahid48+21@gmail.com	2025-05-30 12:31:18	$2y$12$7xROyzyyIWZy4l98Vu/fSOLtl1AjALhQpl.ShWV/1/tIcJiJNtSWm	\N	2025-05-30 12:31:18	2025-05-30 12:31:21	\N	\N	+971	1633481283	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	057bb71ce386081ecbe63228570bb12380057422193ea108a63a8fc2fa4f8632	0	0	Mudassar	1	LQ000203	1	0	0	f	f	-ORWACztEsaMPDJvFCiE	0	\N	\N	0	\N
220	Female	razahamid34+4@gmail.com	2025-06-04 07:07:31	$2y$12$8uEEWIpnG3zZvJhdAi7HJO83c6GaC.cn13hXQAAioCz0QbM/vaP6y	\N	2025-06-04 07:07:31	2025-06-04 07:09:48	\N	\N	971	346454545	\N	\N	1	\N	2	Female	683ff0cd3dc80_1749020877.	2007-06-04	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	89ad097d3fb70900fcae15a3c582eb33708385c08ec790fed4c05d5ccede2f82	0	0	Reject	237	LQ000220	2	0	1	f	f	-ORtl2ow53h8XyqIBegm	0	Hamid	razahamid34@gmail.com	0	\N
272	Harry	hibaejaz97+23@gmail.com	2025-07-13 21:01:37	$2y$12$yi7XOM7meWYdQVfWne38t.ysHa3i9A16PDuJ5OyuavCNZmHkQGRoW	\N	2025-07-13 21:01:37	2025-07-13 21:18:26	\N	\N	971	561660175	1	2	1	\N	2	Male	68741effac4ac_1752440575.	1986-07-13	0	ios				\N	\N	\N	0	1		0	0	Potter	237	LQ000272	1	0	0	f	f	-OV4_yTDj07IXHZ2piOT	1	\N	\N	1	\N
254	Azad	azad@azad.com	2025-07-11 11:23:07	$2y$12$NEcigfbE/5mazs//IFjW2uGomG6VnW9in4Ts7rNh5qDFTHMWoMI5G	\N	2025-07-11 11:23:07	2025-07-11 11:51:56	\N	\N	971	546466489	1	1	1	\N	2	Male	6870f44567dcd_1752233029.	1985-07-11	0	ios	fcm_token			\N	\N	\N	0	1	2c3d97396aa7fd6611943473b24633ef8d6ebb9b94a7a0355723d6eaf0f96a82	0	0	Azad	237	LQ000254	1	0	1	f	f	-OUtDNxcRnSjXKDzQsqv	1	\N	\N	1	\N
210	Test	razahamid34+2@gmail.com	2025-06-06 13:10:06	$2y$12$ernqF/kvyEcd4pSDjJWdvu.OXVvQmA9NEAJx2zCnS5Oq4D4b1Mhba	\N	2025-05-31 15:02:31	2025-06-06 13:10:06	\N	\N	971	675767676	1	1	1	\N	2	Male	683b1a28da441_1748703784.	2007-05-31	0	android	cjg0vSR5R1KAygtxOOKT77:APA91bGRLVR6JDLA7r1GPYDafp0Vfq1dFQNbbaj7emPL5vt1x8gQ2yoC-f55WlEl99Sy_DcGEGO2QhE7JVEFjHaaxzWDIBZiBV9VHYVQOXOrd75mTUS5TU8	\N		\N	\N	\N	0	1	7bf691d8d754439805d8f29772048590e8a521396a308d5f5485d04314e3fae7	1	0	Tes	237	LQ000210	1	0	0	f	f	-ORarQ1rWv4uBNlzfxna	1	\N	\N	1	\N
240	Abdulla	abdu@gmail.com	2025-06-06 11:35:23	$2y$12$JWwJrojegP4t14mDN5wix.zTLoyxpi/puXM5/tclrc04Fw9.gUWia	\N	2025-06-06 11:35:23	2025-06-06 12:02:20	\N	\N	971	562852369	1	1	1	\N	2	Male	6842d2c1c24c5_1749209793.	2006-06-01	0	android	fyFw4bu8TzOcTlzWIheNtP:APA91bHGjnC0jW5DRfXS0IcgJSSbfQ_D_F6-nI0C2P3tnp-HwqyRQAQ9nFoNztzUZxoT_ZcvebupkJenTfp54XYsoofeXq1GIQHKuXcmlUF2OnBWsTEIQCI			\N	\N	\N	0	1	43505bdd555236c730415cdb2cdf89471b07d9bc1995d2c4aa2b3f7ab2906f08	0	0	Abdulla Nick	237	LQ000240	1	0	1	f	f	-OS40YHI0UIliljc607s	1	\N	\N	1	\N
263	Parveen Khan	hibaejaz97+17@gmail.com	2025-07-13 11:02:20	$2y$12$7kz73YWL4cT6/1pX1dWoR.JscMM5nvIWgPmkaZPBiJ5rDiMeVMIHe	\N	2025-07-12 08:26:56	2025-07-13 11:07:26	\N	\N	971	561663258	1	3	1	\N	2	Female	68721c7bc5fdd_1752308859.	1990-07-12	0	ios		\N		\N	\N	\N	0	1		1	0	Parveen	169	LQ000263	1	0	0	t	f	-OUxjdsT4c7B3LExtG68	1	Khan Sahab	hibaejaz97+18@gmail.com	1	\N
171	Hamid	dx020@g.comail.com	2025-05-28 09:54:07	$2y$12$o2EHiK8XrACLEt9S4u7Hr.CwBd8ZyqVXMF9bRSDR4vHMwfCP7IQPu	\N	2025-05-27 05:53:43	2025-05-28 09:54:07	\N	\N	971	355555555	\N	\N	1	\N	2	Female	\N	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	9585e5b905e7cdfb0eb5e99665e60d4ce2c46a4fa9376529c81fb526c36d1056	1	0	Raza	237	LQ000171	0	0	0	f	f	-ORFIRwouYH9MwJGZBBA	0	\N	\N	0	\N
161	Mudassar Zahid	asheok221@gmail.com	2025-05-26 09:53:26	$2y$12$GX.kmifuGUJHRtt1PUJlMu72QYeJHbvukAD.fN1rgTviR1KOhA726	\N	2025-05-26 09:53:26	2025-05-26 09:53:27	\N	\N	+971	163311410271	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	fd48e6c0d55c4c598413fd07478428268a43aae6a0de944e649252ae597651a0	0	0	Mudassar	1	LQ000161	0	0	0	f	f	\N	0	\N	\N	0	\N
241	Ali	ali@ali.com	2025-06-06 14:34:47	$2y$12$wCNQOfjo5qr4NFwY45Fk7eEshz7Cs3aWX7.U4tVWeLkQe747f2vbm	\N	2025-06-06 13:57:11	2025-06-06 14:34:47	\N	\N	971	456434864	1	1	1	\N	2	Male	6842f3e4ab6a8_1749218276.	2006-07-03	0	android	e8JRgsP8SnWDsNK1DTSpp-:APA91bHQcV5aVcIhooV_H0i4vhffwceaR9MFTLBioWWFfhplmwzIHOSluUo5Qea1d3-WbXwgDKHAReD7yaZJlLsivlnzGgOAQvsKrkm9g87hcuPH4tXkwQA	\N		\N	\N	\N	0	1	3feb6126b58919698d3d79d1eae69823956a3703ca05211fe9362155f160fcec	1	0	Ali ali	237	LQ000241	1	0	1	f	f	-OS4X-NVe5iJmFw9fCQg	1	\N	\N	1	\N
211	DX HAMID	dx101@gmail.com	2025-07-13 14:02:49	$2y$12$Ug1tyBSQHEFZh4.tcXlvIu6GsqmW86uCX4L5Zw3id.qI9U2Fwn0ma	\N	2025-05-31 16:42:24	2025-07-13 15:20:35	\N	\N	971	346457557	1	1	1	\N	2	Female	683b319f9eca2_1748709791.	2007-05-31	0	android		\N			2025-07-12 12:07:45	0	0	1		1	0	Dx	237	LQ000211	1	0	1	f	f	-ORbDH7ww3D756BqV4vY	1	Hamid	razahamid34@gmail.com	1	\N
264	Sayid Khan	hibaejaz97+19@gmail.com	2025-07-13 07:43:50	$2y$12$9s22cwaAYQKw.Xv/C5B1OOYsov39QZuLl6PvG25fX83TVU.WQo9S2	\N	2025-07-12 08:54:57	2025-07-13 21:07:27	\N	\N	971	561997948	1	3	1	\N	2	Male	6872230b74af8_1752310539.	1986-07-12	0	ios		\N		\N	\N	\N	0	1		1	0	Sayid	169	LQ000264	1	0	0	t	f	-OUxq3AvzYh0a2Fxcvw3	1	\N	\N	1	\N
255	Hamid	hamidios001@gmail.com__deleted_acount255	2025-07-11 11:54:10	$2y$12$FwNP4LmgujCyb6uUKHoH5uKQ1Rysx2MlgDHyasmXBirtuirQpvUdu	\N	2025-07-11 11:44:15	2025-07-11 14:39:29	\N	\N	971	343422223__deleted_acount255	\N	\N	0	\N	2	Male	6870f93587eec_1752234293.	2007-07-11	0	ios		\N		\N	\N	\N	0	1		1	1	Razahamid	237	LQ000255	1	0	1	f	f	-OUtIDM6JGW45iB6EQRQ	1	\N	\N	1	\N
231	Sara Mohammed	sara123@gmail.com	2025-06-05 07:48:26	$2y$12$4WMWZsLJztdPpk8CZWwhtec6DFt0ubiSw4DTkHFB.XfrCUOm1hgT.	\N	2025-06-05 07:45:09	2025-06-05 07:55:47	\N	\N	971	555555555	1	1	1	\N	2	Female	68414b49a39bc_1749109577.	2006-12-06	0	android	esn0ZJA8SOW3IZDC-EFCop:APA91bGKqg_0Thb0Ld7bOnvI97_WMAKDnzje9nZocuOaz9crTuD-Z8bU49ZSOrX0-h5FFYJu38TcXL5rW3mECJ-xG-vQnKCOSKMegNsuqacfhYxdYYjvayg	\N		\N	\N	\N	0	1	c81f891cb88bab315f25e47bc77193c461f5d5a6d8f5dd70d2452690caa2eefe	1	0	Saram	237	LQ000231	1	0	1	f	f	-ORz2FwFvf076Ega6H3p	1	Mohammed	anil@dxbusinessgroup.com	1	\N
221	Zainab Khan	hibaejaz97+5@gmail.com__deleted_acount221	2025-06-04 07:25:09	$2y$12$qOXo/Q57q2oE.QPmQrogSuXREn/GFDlgc0QiUbjDJEnfoLu1Cf6Ja	\N	2025-06-04 07:21:52	2025-06-04 07:38:20	\N	\N	971	561669844__deleted_acount221	\N	\N	0	\N	2	Female	683ff42f78d6b_1749021743.	1995-06-04	0	android		\N		\N	\N	\N	0	1		1	1	Zainab	169	LQ000221	2	0	0	f	f	-ORtoLFlKEOvYHwUHmOT	0	Mk Khan	hibaejaz97+6@gmail.com	0	\N
232	Prefrences	razahamid34+12@gmail.com	2025-06-05 09:05:16	$2y$12$XMf2JQkWHoIx4j346OnWL.iOO/QZKbMqyiv11m4HmNyR/Fx8OXlrK	\N	2025-06-05 08:06:47	2025-06-06 12:40:01	\N	\N	971	646466767	1	1	0	\N	2	Female	684151a506326_1749111205.	2007-06-05	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	94f3f291da04d60641cf3dc75ee3be128166a55121664f9381344b5898f07c74	1	0	Pref	237	LQ000232	1	0	0	f	f	-ORz7CufU-ZaGMCVSqok	1	Hamid	razahamid34@gmail.com	1	\N
162	Hamid	dx010@gmail.com	2025-05-28 06:01:56	$2y$12$vabS2SvVct7Y32qxkQYT2.OjyaKrNV9RDmeHok2bcukgSYUutNki.	\N	2025-05-26 20:26:37	2025-05-28 06:01:56	\N	\N	971	344156258	\N	\N	1	\N	2	Male	\N	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	017e265af95937aeb18c86c1242c8a4a2d6bbe0093c42af94c875bbeec77aa64	1	0	Raza	169	LQ000162	1	0	0	f	f	\N	0	\N	\N	0	\N
212	Muhammad Mudassar Zahid	mudasserzahid48@gmail.com	2025-06-06 06:47:49	$2y$12$x6YSySs61TS8T8Qfng5Qy.9qYlR2X9HNQk9NlE/7BaJyYfBGLs4T2	\N	2025-06-01 17:22:19	2025-06-06 14:27:37	\N	\N	971	123456789	1	1	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasdfasd	1111		\N	\N	\N	0	1	00d4cab39a3da06e37fdbe5f528d4e5b20b9a52f58dab957c2df1423bbf0dd76	1	0	Mudassar	237	LQ000212	1	0	0	f	f	-ORgW-fMGC2jx0G9PMmL	1	\N	\N	1	\N
172	Hamid	dx022@gmail.com	2025-05-27 06:46:12	$2y$12$T/KNtMh7dVI/RFW9EcG5nusdhoQXYTeS8F5.RZxGHzTAPrpnbEk.2	\N	2025-05-27 06:46:12	2025-05-27 06:46:16	\N	\N	971	344454646	\N	\N	1	\N	2	Male	\N	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	272007ad572d820328d8c9d65d1499a5726fce5e20773f8abbfa1b75b89ed0eb	0	0	Raza	237	LQ000172	1	0	0	f	f	-ORFUSaFD08rfeCWnUd1	0	\N	\N	0	\N
222	Mudassar Zahid	mudasserzahid48+123@gmail.com	2025-06-04 07:39:03	$2y$12$a6RxPgnYO79H2eD58MF78.f5DQ0KCpJSV5YiI9XqbkqwOq10IIQsO	\N	2025-06-04 07:39:03	2025-06-04 10:18:08	\N	\N	971	123456980	1	1	1	\N	2	Female	\N	2007-06-03	0	android	c8Pf9Q9GSNutFfCNEMIwG2:APA91bE0hK83ppl2Mb19NS7yCQLp12fFwE4Euhbs4oU1kWPJ9AlWZbD1o5XRaXeN84YZLgchGSsjhPvLCUtuxwR8nETPT6zS1BY8wNmEkweHPSkiuhIqh6k			\N	\N	\N	0	1	70c5de27bba9643170d9ebc90cc945808c4c5ce35c8a2ac686fde28d3ec903ec	0	0	Mudassar	237	LQ000222	1	0	0	f	f	-ORtsGqUwyQCteRzCJ8v	1	Zahid	mudasserzahid48@gmail.com	1	\N
256	Aisha	aisha@aisha.com	2025-07-11 13:23:26	$2y$12$H7.cvdjVJcaC/x549yPBpORovlUReaH66BVqnJnCtHk969J0BQ8.q	\N	2025-07-11 12:03:07	2025-07-11 13:23:26	\N	\N	971	512433485	\N	\N	1	\N	2	Female	6870fd9dcb86a_1752235421.	1992-07-11	0	ios	fcm_token	\N		\N	\N	\N	0	1	126748abbe2fb05fdb005b0f544fedea8227ba3bb97a1e0503f5b5f4e00221c3	1	0	Aisha	237	LQ000256	0	0	1	f	f	-OUtMXhRgQP0bCME_5ef	0	Anil	anil@dxbusinessgroup.com	0	\N
242	Akbar	akbar@akbar.com	2025-06-07 12:04:36	$2y$12$tmKnfqmJhAt.Mam5WZ2XCuKgDmv6.Un4xeY0Ypp7NBtWHLTNcQBIW	\N	2025-06-07 12:04:36	2025-06-09 10:17:36	\N	\N	971	546468461	1	1	1	\N	2	Male	68442afbe555e_1749297915.	2006-06-06	0	android	e8JRgsP8SnWDsNK1DTSpp-:APA91bHQcV5aVcIhooV_H0i4vhffwceaR9MFTLBioWWFfhplmwzIHOSluUo5Qea1d3-WbXwgDKHAReD7yaZJlLsivlnzGgOAQvsKrkm9g87hcuPH4tXkwQA			\N	\N	\N	0	1	cf50c473f026842ae22bc8eeed8b4fbe2413e28b50164dc92f7ef11888267a01	0	0	Akbar ali	237	LQ000242	1	0	1	f	f	-OS9Gov90HWWKFbPtdRp	1	\N	\N	1	\N
265	Hello	razahamid34+110@gmail.com	2025-07-13 12:53:08	$2y$12$hSAqi/m.wxJsiaGLYZlgS.lEOML5OoCu4gOL/ccNjQ3bEVrWI5rzC	\N	2025-07-12 08:55:36	2025-07-13 17:32:02	\N	\N	971	645757575	1	1	1	\N	2	Male	\N	2007-07-12	0	android	fWGUdaAe3UNmjJHQ71bpSE:APA91bGIWN3hrvudJBQfFwj4wWTpHyYYbAL68SxSdDHEBI7kQmNONAqj_k3tPjmEaa6w0X5cxxGZUR4zqHKqXSjQ3hQzn44Y_wtgwYHXZ0PVuKKBXTdywvw	\N		\N	\N	\N	0	1	74849dcc351053bf2e4a951165c4ae276eb5a1d11d22c4790ce7ece92b1b9fa7	1	0	HamidRaza	237	LQ000265	1	0	0	f	f	-OUxqCmmIvhLqdiWJNG5	1	\N	\N	1	\N
57	Mrs. Loraine Gislason DVM	friesen.jake@example.net	\N	$2y$12$Shs0LZLHYm7naO82s98rKO3iFKU/fYSk9HQCzuWPkdZ9xopGQqs2a	\N	2025-05-23 10:22:03	2025-05-23 10:22:03	\N	\N	+44	891354776	36	\N	1	\N	2	Female		1986-09-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Tracy Beer DDS	\N	LQ472371	1	0	0	f	f	\N	0	\N	\N	0	\N
58	Zakary Rowe	jillian73@example.org	\N	$2y$12$9tNGv6Ldq5q38.wk0s97.eng.CVTUQfPPsy5qAStiUqHz59QVbiUS	\N	2025-05-23 10:22:04	2025-05-23 10:22:04	\N	\N	+91	34482261	102	\N	1	\N	2	Male		1983-02-07	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Alverta Stiedemann	\N	LQ84065	1	0	0	f	f	\N	0	\N	\N	0	\N
59	Murl Dare	lrunte@example.org	\N	$2y$12$XEc/BGpKqzh8Yz5/tzFUxevwFq8CjmByNL/mNTsnq2rtITqQSImAm	\N	2025-05-23 10:22:04	2025-05-23 10:22:04	\N	\N	+91	259531850	174	\N	1	\N	2	Female		1971-10-15	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Gretchen Bailey	\N	LQ597476	1	0	0	f	f	\N	0	\N	\N	0	\N
60	Broderick Marquardt	vkeeling@example.com	\N	$2y$12$XIGXDybknYh7z9e7LvoNoeTboIF0la0ZG.QgqhrdvzBd9siPlCiJm	\N	2025-05-23 10:22:04	2025-05-23 10:22:04	\N	\N	+1	175191583	11	\N	1	\N	2	Female		1975-04-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Annabelle Ebert	\N	LQ865657	1	0	0	f	f	\N	0	\N	\N	0	\N
61	Jaclyn Lind	jacobi.ramiro@example.com	\N	$2y$12$DcTSAGIZ/7gSm78mWfFrGuzyzE31ZJD5N/g0Xz43LX8FmIhKfsQXW	\N	2025-05-23 10:22:05	2025-05-23 10:22:05	\N	\N	+91	70731431	53	\N	1	\N	2	Female		1991-12-15	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Osvaldo Pagac PhD	\N	LQ806256	1	0	0	f	f	\N	0	\N	\N	0	\N
62	Dr. Amir Goodwin Sr.	friesen.patience@example.org	\N	$2y$12$1trQlNxP1hf2i1eYUIy0ieF4HsutCg0zfwBYjHi/vVLg/zkeW2rmm	\N	2025-05-23 10:22:05	2025-05-23 10:22:05	\N	\N	+1	909649524	131	\N	1	\N	2	Female		1984-05-01	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lazaro Nienow	\N	LQ815958	1	0	0	f	f	\N	0	\N	\N	0	\N
63	Antonetta Kirlin PhD	ndickinson@example.org	\N	$2y$12$AK0JraaRCqvOd4IK3V8.C.tvLfWpi9jA9hmJ5xqAaOVv12k.WsdDm	\N	2025-05-23 10:22:05	2025-05-23 10:22:05	\N	\N	+1	482238379	108	\N	1	\N	2	Male		1999-07-03	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Hardy Lindgren	\N	LQ290185	1	0	0	f	f	\N	0	\N	\N	0	\N
64	Mr. Freddy Kunze	afeil@example.com	\N	$2y$12$SzMvj.wrNt9k6a/ZvRsN.e8yqVLFzbNFjHBo1NGsp.epDdoT0JYX.	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+91	787902288	53	\N	1	\N	2	Female		1977-11-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Daron Wisozk	\N	LQ606906	1	0	0	f	f	\N	0	\N	\N	0	\N
65	Miss Addie McDermott I	medhurst.icie@example.com	\N	$2y$12$Y2IrAGn7abd8/Ih1J9s3Ju/09lDJbrbEyhuV4bm7L.cDOOkjFC8CW	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+1	225454387	110	\N	1	\N	2	Female		1993-09-19	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ayana Ward	\N	LQ599209	1	0	0	f	f	\N	0	\N	\N	0	\N
66	Miracle Toy	cassin.marcos@example.com	\N	$2y$12$kH9.mRXDqfwuto8rYM2j/O3Xr8rXxW1t5VCPYjQWBfr24gFgD1gS6	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+91	832828940	115	\N	1	\N	2	Male		1981-05-05	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maverick Schultz	\N	LQ714961	1	0	0	f	f	\N	0	\N	\N	0	\N
67	Lonny Nitzsche	royce87@example.org	\N	$2y$12$5XDFEO//shW9ucLJFd7wbucuiFOYGfqgQyqAnRZgJ3p3ETDP/kya6	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+91	534417358	74	\N	1	\N	2	Male		1977-05-19	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Margarita Littel	\N	LQ28946	1	0	0	f	f	\N	0	\N	\N	0	\N
68	Lemuel Considine	stokes.esperanza@example.com	\N	$2y$12$jOir94GagovJAW4PuHKJV.PTgxKlzuKL6S4AJZNrzBCx3Y.8.gyka	\N	2025-05-23 10:22:07	2025-05-23 10:22:07	\N	\N	+91	837676741	91	\N	1	\N	2	Male		1999-02-12	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Charley Von	\N	LQ330734	1	0	0	f	f	\N	0	\N	\N	0	\N
69	Dr. Claudie Daugherty	hand.ivah@example.com	\N	$2y$12$arDJ.Ze7j3MeMn.s9XtjD.luIzbw6eC3d77or/KLs0spKNUOsjP4y	\N	2025-05-23 10:22:07	2025-05-23 10:22:07	\N	\N	+1	588473445	156	\N	1	\N	2	Male		1983-06-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Rashad Carter IV	\N	LQ753597	1	0	0	f	f	\N	0	\N	\N	0	\N
70	Ole Leffler	elsie.hamill@example.net	\N	$2y$12$A/65Hond8Kwo/rxbROLJm.csKIr.T8l/dfaBAd0GPXGuwOfImjcuG	\N	2025-05-23 10:22:07	2025-05-23 10:22:07	\N	\N	+1	721771460	72	\N	1	\N	2	Male		1972-08-19	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mrs. Rosalyn Hamill MD	\N	LQ298312	1	0	0	f	f	\N	0	\N	\N	0	\N
71	Luis Lindgren	lblick@example.com	\N	$2y$12$sQVIv.zZzPtta3Nd3QG2EuNJIda/B6EFhm8Zs1DXSyIaJgDNylSuu	\N	2025-05-23 10:22:08	2025-05-23 10:22:08	\N	\N	+91	906288035	16	\N	1	\N	2	Male		1990-03-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Beatrice Littel	\N	LQ429777	1	0	0	f	f	\N	0	\N	\N	0	\N
72	Mrs. Hassie Lebsack PhD	fmckenzie@example.com	\N	$2y$12$iqA1m33CaLGJLi/VYEPSVO6ChD86ycFMvyCZ5/oVvv2jAybC6QUSi	\N	2025-05-23 10:22:08	2025-05-23 10:22:08	\N	\N	+1	944443105	135	\N	1	\N	2	Female		1998-07-17	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Trystan Okuneva	\N	LQ680821	1	0	0	f	f	\N	0	\N	\N	0	\N
73	Chris O'Conner	chelsie64@example.org	\N	$2y$12$hYYydHSnbl7vVpfHRn5caezv9iucbUr2BwYogYFbOVNAsyiO9cJwK	\N	2025-05-23 10:22:08	2025-05-23 10:22:08	\N	\N	+1	663452539	118	\N	1	\N	2	Female		1984-12-08	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Benedict Powlowski	\N	LQ917619	1	0	0	f	f	\N	0	\N	\N	0	\N
74	Dorris Cole	ymurazik@example.com	\N	$2y$12$GdLInaR1NNM4hnH1FRssJ.EqiWvucZuXSX5RGmtm9w81xCDKkGkh.	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+1	721838720	13	\N	1	\N	2	Female		1991-12-12	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Darlene Grady	\N	LQ561425	1	0	0	f	f	\N	0	\N	\N	0	\N
75	Kareem Bernier I	mbashirian@example.com	\N	$2y$12$hj5sWGEF/Bzwte.yRHd.PeOjXBbjF2CEA6m4YgAk7r0AmktV0xR0G	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+91	238656019	41	\N	1	\N	2	Male		1981-08-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mr. Dewayne Kilback	\N	LQ232100	1	0	0	f	f	\N	0	\N	\N	0	\N
76	Ms. Elena Goldner III	chelsie89@example.com	\N	$2y$12$hDEjCgB7w9kfJYDx1OrcNOFVulmZ5ULgs/xjdKvJrZ7BUajiLSkWy	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+91	828945787	7	\N	1	\N	2	Male		1999-01-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Orval Feest DDS	\N	LQ424292	1	0	0	f	f	\N	0	\N	\N	0	\N
77	Stanton Zulauf	hudson.krajcik@example.net	\N	$2y$12$eOcheMydtIas00kFXcUi4OM.Vs5dwsFIbnOHJyHI7c2n4EA/cTp/e	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+44	667704865	133	\N	1	\N	2	Female		1977-10-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Riley Langosh	\N	LQ433901	1	0	0	f	f	\N	0	\N	\N	0	\N
78	Leora Gibson	rlindgren@example.org	\N	$2y$12$.W2x6c7.emNefSGbN5CjyeCBa3y9Gr155mE4/jHU7Mx4BUQYw.8rO	\N	2025-05-23 10:22:10	2025-05-23 10:22:10	\N	\N	+44	553946877	10	\N	1	\N	2	Male		1976-06-28	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jeramie Wisoky IV	\N	LQ349652	1	0	0	f	f	\N	0	\N	\N	0	\N
79	Sydney Renner	heidenreich.jamarcus@example.com	\N	$2y$12$SKerZy/RLP6ogfSglEGRUeSk8Nlqhvu6QOHFZOsfMNwYntciAC1pq	\N	2025-05-23 10:22:10	2025-05-23 10:22:10	\N	\N	+1	225802165	179	\N	1	\N	2	Male		1997-07-01	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lera Turner DVM	\N	LQ442157	1	0	0	f	f	\N	0	\N	\N	0	\N
80	Sylvia Gusikowski	garrick.abshire@example.org	\N	$2y$12$Rcxr16z6QzimBAoUDChjse7sRHy7MP7uQL5WRgU8Y8GuEeEonfqT6	\N	2025-05-23 10:22:10	2025-05-23 10:22:10	\N	\N	+1	24332503	117	\N	1	\N	2	Female		1987-01-31	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Koby Runolfsson	\N	LQ541425	1	0	0	f	f	\N	0	\N	\N	0	\N
81	Isai Jerde V	nkrajcik@example.com	\N	$2y$12$DEapfZ6dBOlwkvgGgHc5p.mNE.WqPWxdt7mRK4NwPl7ZlkIHe94o.	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+91	668020429	192	\N	1	\N	2	Female		1990-06-21	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Pearl Mosciski	\N	LQ748987	1	0	0	f	f	\N	0	\N	\N	0	\N
82	Foster Heidenreich	ephraim86@example.com	\N	$2y$12$1/Eq0meS8JWBfrJ3xmtjGucI803A2kucuq1ksJG8DwrNwMMbhl3sy	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+1	808898255	158	\N	1	\N	2	Female		1990-11-18	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Adrien Wunsch DDS	\N	LQ191364	1	0	0	f	f	\N	0	\N	\N	0	\N
83	Delmer Lowe	thea63@example.net	\N	$2y$12$CVYSTy5VdJr3Ic1.EjfcSOr1thRbQWuBwWwm/Ura.vqzHONKUw6/W	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+44	534458252	145	\N	1	\N	2	Female		1998-06-13	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mallie Cassin	\N	LQ69941	1	0	0	f	f	\N	0	\N	\N	0	\N
84	Derrick Moen	daniela43@example.net	\N	$2y$12$7jR5ggHbULKKJFpfD2j1pu/Z/88R0xUCyjEFpz533sCCnKfWFnSWm	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+1	984606355	155	\N	1	\N	2	Female		1990-08-14	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lexi Bins	\N	LQ814907	1	0	0	f	f	\N	0	\N	\N	0	\N
86	Prof. Lillie Schmitt	gleason.ludwig@example.org	\N	$2y$12$iJM1OpC/dl8qlEA9dyUajun.avxVh0QMU42sqWj5JQS.2ZmtKxGwm	\N	2025-05-23 10:22:12	2025-05-23 10:22:12	\N	\N	+91	934869849	30	\N	1	\N	2	Male		1981-03-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Uriah Goldner III	\N	LQ389578	1	0	0	f	f	\N	0	\N	\N	0	\N
87	Antone Turner	bauch.erin@example.net	\N	$2y$12$B0P9pa.wFmEecdI4DQn7Fee7WZI0VbcGiTCjB52295mnLOFWTMpSG	\N	2025-05-23 10:22:12	2025-05-23 10:22:12	\N	\N	+91	866232922	151	\N	1	\N	2	Female		1994-11-02	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Abigail Smitham	\N	LQ96834	1	0	0	f	f	\N	0	\N	\N	0	\N
88	Dr. Mikel Nikolaus	west.beryl@example.com	\N	$2y$12$Hfr/vRO//up0SZaceouBmODyXvLyS3UzVEpH6O5TD5G.KzgHgDW1G	\N	2025-05-23 10:22:13	2025-05-23 10:22:13	\N	\N	+91	475927245	58	\N	1	\N	2	Male		1986-06-28	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Chad Marvin	\N	LQ459826	1	0	0	f	f	\N	0	\N	\N	0	\N
89	Favian Hilpert	bortiz@example.net	\N	$2y$12$c0PE0l2hOEgpzTeZ/iWJDuTheGT2j8VZDh.OIGLQVwAQywTjJe7sm	\N	2025-05-23 10:22:13	2025-05-23 10:22:13	\N	\N	+1	462753241	24	\N	1	\N	2	Female		1973-06-21	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ava Morissette	\N	LQ424281	1	0	0	f	f	\N	0	\N	\N	0	\N
90	Dr. Elnora Crist	jessy.langworth@example.net	\N	$2y$12$ppu4SYyfenZhunCeBztLeu17LnzT3O1vbyeJ.mfRDgpTRXxCJLOOa	\N	2025-05-23 10:22:13	2025-05-23 10:22:13	\N	\N	+44	836848916	139	\N	1	\N	2	Female		1972-03-16	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Alexane Quigley	\N	LQ809799	1	0	0	f	f	\N	0	\N	\N	0	\N
92	Prof. Carlo Ebert	dbernier@example.com	\N	$2y$12$9OkHeh7lakg26v8H3ZAsVOfSaLxVJHUtJZGRtGLH2g/rL5Encsq8i	\N	2025-05-23 10:22:14	2025-05-23 10:22:14	\N	\N	+91	747029644	13	\N	1	\N	2	Female		1993-03-11	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mr. Lew Kling	\N	LQ596577	1	0	0	f	f	\N	0	\N	\N	0	\N
93	Leola Koelpin	gardner90@example.com	\N	$2y$12$wwghn1B013fpqcX6gUp0iOvINsDFdxdiMGAgGP0BFQ8BfATQc/vEG	\N	2025-05-23 10:22:14	2025-05-23 10:22:14	\N	\N	+1	602256622	30	\N	1	\N	2	Male		1990-06-01	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Heloise Veum	\N	LQ340462	1	0	0	f	f	\N	0	\N	\N	0	\N
94	Jayson Jacobs	douglas.valentina@example.net	\N	$2y$12$xtl4v6hn2qeEqE1UcNJVb.0La0ZfrbeoBJBE7N3b44YX/UZzrv5na	\N	2025-05-23 10:22:14	2025-05-23 10:22:14	\N	\N	+1	528242313	179	\N	1	\N	2	Female		1974-10-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Simone O'Keefe	\N	LQ612558	1	0	0	f	f	\N	0	\N	\N	0	\N
95	Tyson Emmerich	ethel29@example.com	\N	$2y$12$d2.jyx6Suv4NjDh2dU8FRe.xRAw25Qe3WcoGEJwuFhfeXLhNxZBwq	\N	2025-05-23 10:22:15	2025-05-23 10:22:15	\N	\N	+91	554835846	192	\N	1	\N	2	Female		1999-03-23	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jerrell Hyatt	\N	LQ246368	1	0	0	f	f	\N	0	\N	\N	0	\N
96	Abbigail Sawayn	hayes.josie@example.net	\N	$2y$12$pKdVIR8X40/0zzPbj6lG0u7ok4eIIovy55oVbJ137CKquKnr7D0UC	\N	2025-05-23 10:22:15	2025-05-23 10:22:15	\N	\N	+91	762401189	172	\N	1	\N	2	Female		1981-07-15	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dayna Hammes	\N	LQ50335	1	0	0	f	f	\N	0	\N	\N	0	\N
97	Prof. Clara Koelpin	ottis.gutkowski@example.org	\N	$2y$12$imW0LAHLa8I3dlbu.pteWet/5OqB5NdzJKWiLGZT47.L7G7JDAw/m	\N	2025-05-23 10:22:15	2025-05-23 10:22:15	\N	\N	+44	147600469	147	\N	1	\N	2	Male		1990-09-24	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Sigrid McDermott Jr.	\N	LQ766559	1	0	0	f	f	\N	0	\N	\N	0	\N
98	Miss Carley Wolf I	cartwright.tessie@example.org	\N	$2y$12$i3Uz9lrJKCJkewe718/mDeGCjVA1N5srRl1sWoZxAJ/LpSEjXpuF6	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+44	661220110	69	\N	1	\N	2	Female		1972-10-08	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mrs. Jude Lebsack DVM	\N	LQ879896	1	0	0	f	f	\N	0	\N	\N	0	\N
99	Prof. Mitchell Kub DDS	douglas.jerald@example.com	\N	$2y$12$iFbS8H1IxZOETIXfKbyToO1lmh.Uyye111ZpNDMPUfnYt34B3SChq	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+91	542425825	41	\N	1	\N	2	Male		1995-09-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mrs. Stacey Mann	\N	LQ935437	1	0	0	f	f	\N	0	\N	\N	0	\N
100	Miss Aisha Cassin	egreenfelder@example.org	\N	$2y$12$AEgZXgFRh0fAkJRRqN4rXuia3ULaRIgbdMJFH04mouDoLlDcopaBi	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+1	75150264	100	\N	1	\N	2	Male		1973-08-12	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Edmond Doyle	\N	LQ931393	1	0	0	f	f	\N	0	\N	\N	0	\N
101	Jeromy Roberts	ysanford@example.org	\N	$2y$12$.Z0ZNaskxVbD9Wa5PW2XxOGSqIVx5aWY.7EAunS6ZAshnLlOs6OuG	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+44	711959277	17	\N	1	\N	2	Female		1996-12-16	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Bradford Wyman PhD	\N	LQ456328	1	0	0	f	f	\N	0	\N	\N	0	\N
102	Aryanna Bernhard	alia.okuneva@example.net	\N	$2y$12$Mh4zl1fAnBNZVbrp87KNCe2FFDdhImQgo7r7R75nelNxDrt9rWQnK	\N	2025-05-23 10:22:17	2025-05-23 10:22:17	\N	\N	+1	291522493	83	\N	1	\N	2	Male		1999-05-01	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Vivianne Glover	\N	LQ338743	1	0	0	f	f	\N	0	\N	\N	0	\N
103	Mable Jacobson	cruz48@example.org	\N	$2y$12$fGQp.dRsatyJgEAnGZvrKOWmG3OJnlF6rTx5DzlrZCJ6EHy7sENum	\N	2025-05-23 10:22:17	2025-05-23 10:22:17	\N	\N	+91	318713450	146	\N	1	\N	2	Female		1987-06-06	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Vidal Schultz	\N	LQ651159	1	0	0	f	f	\N	0	\N	\N	0	\N
104	Rosella Bergstrom	susie12@example.org	\N	$2y$12$q7XKNh68ftsm0kYLJaqcyeRQJh/vAtinNSZX1gqgSB9G84zRVEf3q	\N	2025-05-23 10:22:17	2025-05-23 10:22:17	\N	\N	+44	44600564	159	\N	1	\N	2	Male		1988-10-23	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Chris Prosacco	\N	LQ142616	1	0	0	f	f	\N	0	\N	\N	0	\N
105	Makenna Bashirian	lenny.hermiston@example.org	\N	$2y$12$2ysfC.Dl4W38EOxm1BHwAO098OUVzt0uLfzQksxlNAEmh8yR4KJwC	\N	2025-05-23 10:22:18	2025-05-23 10:22:18	\N	\N	+1	563263157	39	\N	1	\N	2	Female		1974-04-22	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Erick McLaughlin	\N	LQ586533	1	0	0	f	f	\N	0	\N	\N	0	\N
106	Ahmed Blick	emmett.rowe@example.com	\N	$2y$12$J5A5aH5nJx2fgqYnEHfi6eWH90ZR2mqvpbp.i5kGUoa.34ggU22a.	\N	2025-05-23 10:22:18	2025-05-23 10:22:18	\N	\N	+91	588567195	8	\N	1	\N	2	Female		1975-04-30	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lincoln Weissnat	\N	LQ255964	1	0	0	f	f	\N	0	\N	\N	0	\N
107	Rhiannon DuBuque	predovic.chyna@example.org	\N	$2y$12$VTuk7O5EnymNT0okk0heQOpp/7G8N9bPszo6DmUrz/tglvWUt6WPW	\N	2025-05-23 10:22:18	2025-05-23 10:22:18	\N	\N	+44	297825745	132	\N	1	\N	2	Female		1978-05-13	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mozell Kris PhD	\N	LQ143727	1	0	0	f	f	\N	0	\N	\N	0	\N
108	Mr. Marshall Terry	hayes.connor@example.com	\N	$2y$12$WpIXkZDDPD4xh70seVoNDeJVg8Oe5rpgJbiREwmTJwdkpgOHVoldC	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+91	982505301	97	\N	1	\N	2	Female		1991-12-14	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mafalda Kulas	\N	LQ904378	1	0	0	f	f	\N	0	\N	\N	0	\N
109	Zoe Quitzon	scartwright@example.com	\N	$2y$12$yurDnYjVmE0.9XnsfVL32Oojh.ay29YCnXZDAjcza4HZ3HL0KI3tC	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+1	74385682	130	\N	1	\N	2	Female		1985-05-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Billy McCullough	\N	LQ17979	1	0	0	f	f	\N	0	\N	\N	0	\N
110	Rocio Kilback	harvey86@example.com	\N	$2y$12$gkQofnob590iYbkKxO..xewiM0Dh2OI6EZ0mRBeNYoBoq7.6XSyhu	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+1	573080460	149	\N	1	\N	2	Female		1986-12-14	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Shayna Nader V	\N	LQ564181	1	0	0	f	f	\N	0	\N	\N	0	\N
111	Charles Medhurst	cdach@example.com	\N	$2y$12$fQHNnapvxQqVWp1WxYYcteE7uZwNPMHYnxtBV3SUsnhfBRzntg24q	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+1	456539544	37	\N	1	\N	2	Female		1973-10-24	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Miss Crystel Bradtke Jr.	\N	LQ893689	1	0	0	f	f	\N	0	\N	\N	0	\N
112	Jenifer Wiza	npredovic@example.com	\N	$2y$12$GFBYkBZzBqBjFMtgm0LzbunDurwB/4xO9ZyLgP.1RxyeqUIv0oswi	\N	2025-05-23 10:22:20	2025-05-23 10:22:20	\N	\N	+44	199445585	199	\N	1	\N	2	Female		1976-12-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Keyshawn Nolan	\N	LQ452208	1	0	0	f	f	\N	0	\N	\N	0	\N
113	Ms. Dakota Rohan	emmerich.effie@example.org	\N	$2y$12$3xZ1JQm9by08NhzIO7fIaOnBlpYxVo2CmRdtAwqcFJvn6MRKjpstq	\N	2025-05-23 10:22:20	2025-05-23 10:22:20	\N	\N	+44	581991292	26	\N	1	\N	2	Male		1985-06-08	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Sabrina McGlynn	\N	LQ87063	1	0	0	f	f	\N	0	\N	\N	0	\N
114	Dr. Aglae Reilly I	dach.rodrigo@example.net	\N	$2y$12$72Ly4uHm4EohddNJqqH8EOYHhSfi6rLlPdAYGa3TpyXIsTg1jnKCW	\N	2025-05-23 10:22:20	2025-05-23 10:22:20	\N	\N	+1	432800910	133	\N	1	\N	2	Male		1979-11-09	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Helen Pouros III	\N	LQ62770	1	0	0	f	f	\N	0	\N	\N	0	\N
115	Jayden Sporer	giovanni31@example.com	\N	$2y$12$MJ5HFumzE5Ob/hf273.Sb.4Py.y9To7sjgDP5MafUkwKU00oNWExe	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+44	365794577	58	\N	1	\N	2	Male		1988-01-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Terrence Torphy	\N	LQ784424	1	0	0	f	f	\N	0	\N	\N	0	\N
116	Mathew Wunsch	salvador59@example.com	\N	$2y$12$VDW0DQNwUX1k6a4M9X5xJujtuE1vxHc8H1V8lMgqzqmhHjdzuOVKS	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+44	628952925	35	\N	1	\N	2	Female		1995-07-27	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Misael Halvorson	\N	LQ713712	1	0	0	f	f	\N	0	\N	\N	0	\N
117	Mr. Brown Romaguera	edythe57@example.net	\N	$2y$12$8fsOQbR4nCzg9007n0onyO7kutamO9G8R9YlFmNnueO6ie1lD6vkq	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+1	857764018	60	\N	1	\N	2	Male		1974-08-31	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Madyson Beier II	\N	LQ514061	1	0	0	f	f	\N	0	\N	\N	0	\N
118	Enoch Kling	conroy.jarod@example.org	\N	$2y$12$KR6Tx5lZqHOIN/za2tBHauTfCUKmCR2Y/T6TBAQt6gg/Of3FnbEZS	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+1	864573465	103	\N	1	\N	2	Female		1979-06-02	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Elvie Reichel Jr.	\N	LQ6073	1	0	0	f	f	\N	0	\N	\N	0	\N
119	Prof. Kaden Barrows	alfonzo.jerde@example.com	\N	$2y$12$1RRSJodfKHCwxG18FAX4fe1flM4oW1AZ1YPEMGH6GfnfMFqEywOK2	\N	2025-05-23 10:22:22	2025-05-23 10:22:22	\N	\N	+91	79607546	146	\N	1	\N	2	Male		1996-08-02	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Miss Neoma Frami	\N	LQ896145	1	0	0	f	f	\N	0	\N	\N	0	\N
120	Keagan Armstrong	rupert.marvin@example.org	\N	$2y$12$TybFVpYVw1wT1YyfqJjsMu6KVBK1b8z3e.oJxTWXRayTmOtLtjLe2	\N	2025-05-23 10:22:22	2025-05-23 10:22:22	\N	\N	+91	846348958	138	\N	1	\N	2	Male		1996-07-27	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maritza Miller MD	\N	LQ939609	1	0	0	f	f	\N	0	\N	\N	0	\N
121	Sidney Wolf	wreynolds@example.org	\N	$2y$12$DzYyAh7BjyuAsLLkvgTH/OoZoiPc/S6A1LyLAZ23uKX6.J.pzgSP.	\N	2025-05-23 10:22:22	2025-05-23 10:22:22	\N	\N	+91	930414969	47	\N	1	\N	2	Female		1977-01-31	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ms. Althea Lindgren	\N	LQ877958	1	0	0	f	f	\N	0	\N	\N	0	\N
122	Anahi Raynor	tre.champlin@example.org	\N	$2y$12$idc7PUmhGqXE694zcXeRMeUMhqNmYDm5X5BH452ixgRyuSb0cUgee	\N	2025-05-23 10:22:23	2025-05-23 10:22:23	\N	\N	+1	179347898	48	\N	1	\N	2	Male		1992-04-14	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Cindy Wiegand III	\N	LQ547782	1	0	0	f	f	\N	0	\N	\N	0	\N
123	Mrs. Britney Hudson	fahey.shane@example.org	\N	$2y$12$UW9QIWK.X8N/To8uFBSLCe/j.IVbYUR.aPiVWuUTRdgD2i5OAm2YS	\N	2025-05-23 10:22:23	2025-05-23 10:22:23	\N	\N	+91	384161923	199	\N	1	\N	2	Male		1985-06-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Junior Gulgowski	\N	LQ45294	1	0	0	f	f	\N	0	\N	\N	0	\N
124	Prof. Darryl Klein DDS	vkunze@example.net	\N	$2y$12$qurvUuFZnUa1Yu6kXZsN5exb4H5pOWV5sxwQIZl8Mua3UzbkhqGNe	\N	2025-05-23 10:22:23	2025-05-23 10:22:23	\N	\N	+44	422708779	45	\N	1	\N	2	Male		1972-11-15	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Percy Stark	\N	LQ211862	1	0	0	f	f	\N	0	\N	\N	0	\N
125	Miss Willa Stoltenberg I	holly08@example.net	\N	$2y$12$iNUtUu/ds.6Kwh7ZdnWeY.8J7YEyi9KB6JB7ZMeXnQCv5ZfT/shE.	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+44	756668300	13	\N	1	\N	2	Male		1990-10-30	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Nina Parisian II	\N	LQ738101	1	0	0	f	f	\N	0	\N	\N	0	\N
126	Prof. Evans Zieme V	lehner.moises@example.net	\N	$2y$12$0cdHfHLE3gfK8Lr9gI3nCOiEA2xqXBg8G3QbioBcRm2LAz8vtvnca	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+44	156907599	175	\N	1	\N	2	Female		1998-04-19	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jaylin Hessel	\N	LQ254382	1	0	0	f	f	\N	0	\N	\N	0	\N
127	Zora Johnson	jeffry34@example.com	\N	$2y$12$j7AWm4GwLXbcXBed4xtop.SNGCxs1zociWJGg1I2JNbWkGM9Pc2re	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+44	448293143	94	\N	1	\N	2	Female		1996-06-04	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maybell Balistreri	\N	LQ86018	1	0	0	f	f	\N	0	\N	\N	0	\N
128	Kyler Greenfelder	geraldine.labadie@example.org	\N	$2y$12$8fcdp5MpagkuKnYg4qQRMelL2H14U6Y2PrlwJzqelnRVg8vSwDq2y	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+1	522803225	67	\N	1	\N	2	Male		1984-03-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jedidiah Gaylord	\N	LQ275324	1	0	0	f	f	\N	0	\N	\N	0	\N
129	Leone McDermott	ystokes@example.org	\N	$2y$12$x8UsbVqjKaab9.POmA8UQuAWqV9WHGrCGXHsJenIbcfQyM2kP2WmG	\N	2025-05-23 10:22:25	2025-05-23 10:22:25	\N	\N	+91	636494528	2	\N	1	\N	2	Male		1993-08-23	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Dasia Altenwerth	\N	LQ390506	1	0	0	f	f	\N	0	\N	\N	0	\N
130	Elisa Goodwin MD	leuschke.pedro@example.org	\N	$2y$12$fyjaLLO7rvDDxeVr35OXXOiNikGPOFr0knxq..1fouFYCgGs/N9NO	\N	2025-05-23 10:22:25	2025-05-23 10:22:25	\N	\N	+91	772127241	31	\N	1	\N	2	Female		1980-07-11	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Marisa Schuster DDS	\N	LQ391936	1	0	0	f	f	\N	0	\N	\N	0	\N
131	Reid Hermiston	schamberger.elsa@example.net	\N	$2y$12$2co.1y2h1.HMHOT4gFp40ON6BL52DJKpWKrVBCTR8WCxB5paOUUIm	\N	2025-05-23 10:22:25	2025-05-23 10:22:25	\N	\N	+91	926674416	128	\N	1	\N	2	Male		1970-10-27	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Maud Wisoky II	\N	LQ249110	1	0	0	f	f	\N	0	\N	\N	0	\N
132	Mr. Kory Kautzer	kellie.lakin@example.org	\N	$2y$12$faNlBKB7UcHxjEe45XHdOOk64J/lGqo8OzA.DxAiPJdtgW0QI7ilS	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+91	871818043	18	\N	1	\N	2	Female		1989-09-04	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Carlo McKenzie PhD	\N	LQ619152	1	0	0	f	f	\N	0	\N	\N	0	\N
133	Korbin Smitham I	sarah.trantow@example.com	\N	$2y$12$lzpDJzQ3E8TqFdipoFKeNeR0AAWsTgNfxu.aUS2.bvLLRdj.m21yG	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+1	495762900	167	\N	1	\N	2	Male		1991-08-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Eleanore Zulauf II	\N	LQ194514	1	0	0	f	f	\N	0	\N	\N	0	\N
134	Carissa Erdman I	heller.sister@example.net	\N	$2y$12$8i6mUcg.Qa.3rOgSnojsaOK5qJ1D9iPiojYiJx5sEq.4UzTILQsja	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+1	589258569	125	\N	1	\N	2	Female		1970-04-11	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Pablo Gleason	\N	LQ836374	1	0	0	f	f	\N	0	\N	\N	0	\N
135	Wava Kling	amalia.ratke@example.net	\N	$2y$12$XlaakLyX7cTLI1HZJ2pN8OhqPgY6bGETPUieZPle.LHSnD.zB1tBe	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+44	215521848	98	\N	1	\N	2	Male		1972-10-11	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Shaina Connelly III	\N	LQ115135	1	0	0	f	f	\N	0	\N	\N	0	\N
136	Juvenal Bosco DDS	enola34@example.net	\N	$2y$12$ClxEduuMjOA/4LCb9O40m.4NoRHt49jYGAG1VV3EJ3w4OvH1.8Gy.	\N	2025-05-23 10:22:27	2025-05-23 10:22:27	\N	\N	+1	987626793	20	\N	1	\N	2	Female		1984-07-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Kara Johnston DVM	\N	LQ789255	1	0	0	f	f	\N	0	\N	\N	0	\N
137	Dr. Russ Lowe	spredovic@example.com	\N	$2y$12$XZ1Xe78al7IIOPn/oqfo9.WYUjwr0hACXA1YnXcsRyUKgFBFhL0Ca	\N	2025-05-23 10:22:27	2025-05-23 10:22:27	\N	\N	+1	650428196	136	\N	1	\N	2	Female		1971-10-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Leonor Rowe	\N	LQ867231	1	0	0	f	f	\N	0	\N	\N	0	\N
138	Velda Daniel	tkrajcik@example.net	\N	$2y$12$SQ49oCmmw263wbaRTDYEOebQN.hQGjC9SdmuBmr.SIb47ASN.Pmaa	\N	2025-05-23 10:22:27	2025-05-23 10:22:27	\N	\N	+44	424973160	195	\N	1	\N	2	Female		1976-03-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Clemens Kunde	\N	LQ12863	1	0	0	f	f	\N	0	\N	\N	0	\N
139	Eulah Kovacek	ddietrich@example.org	\N	$2y$12$vRjNyBXLmIIQy/UCoUxHtOhJ46SqWAF5TZl6wZlsJwqKYfosk9z.K	\N	2025-05-23 10:22:28	2025-05-23 10:22:28	\N	\N	+91	644836104	197	\N	1	\N	2	Male		1997-02-28	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Stephan Roberts	\N	LQ278419	1	0	0	f	f	\N	0	\N	\N	0	\N
140	Mr. Oran Mann PhD	jade.walter@example.net	\N	$2y$12$luGpjmoyurmeqlc6Bdlt.uSb9fIiHW1MKGYqoREOv.1Bq.wiJ9kvS	\N	2025-05-23 10:22:28	2025-05-23 10:22:28	\N	\N	+1	27870995	107	\N	1	\N	2	Male		1984-06-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Cassandra Aufderhar	\N	LQ8044	1	0	0	f	f	\N	0	\N	\N	0	\N
141	Santiago Lindgren	tkessler@example.com	\N	$2y$12$OlWVq0EYYViWyeBjho94QeqcNn9R.704MheQL45KIho0ljcxL98nK	\N	2025-05-23 10:22:28	2025-05-23 10:22:28	\N	\N	+44	512247732	71	\N	1	\N	2	Male		1975-01-31	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Eladio Bins PhD	\N	LQ248653	1	0	0	f	f	\N	0	\N	\N	0	\N
142	Muhammad Kuvalis	agaylord@example.com	\N	$2y$12$xbNy5nsvvk2iXM714aC7/egt.bR99kN16MPyDkQC9T0ZPrzd0gt76	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+91	303345150	148	\N	1	\N	2	Male		1978-02-04	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Diamond Upton	\N	LQ21058	1	0	0	f	f	\N	0	\N	\N	0	\N
143	Jovani Auer	christiansen.graciela@example.net	\N	$2y$12$N9zXxAstnSGE5p/XvmLTH.tWDPtbS2WUHmqPX87oB47kBiuwBtAQG	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+44	534934486	97	\N	1	\N	2	Male		1981-06-24	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Michelle Stracke	\N	LQ264737	1	0	0	f	f	\N	0	\N	\N	0	\N
144	Makenzie Tillman MD	dlowe@example.com	\N	$2y$12$pwyizX.O3QGd/D9PmbQP..Q/jXKHuscfzJ1t6MCWrlPMAiC96AZhi	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+1	520041619	164	\N	1	\N	2	Female		1993-10-24	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Deon Stehr	\N	LQ575307	1	0	0	f	f	\N	0	\N	\N	0	\N
145	Dr. Philip Nolan	lbailey@example.com	\N	$2y$12$6thLDjvzgqpdi37L0ZNSCOTadrrNguncFJx5jjMJ6DA9JMHrGZNS6	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+44	732557472	97	\N	1	\N	2	Male		1971-05-22	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maybell Huels	\N	LQ953385	1	0	0	f	f	\N	0	\N	\N	0	\N
146	Ola Bins	stacy13@example.net	\N	$2y$12$gQME0Dd001xBQBXAYfs8S.wP68ca4xo0nf8607yzHRc9UDk8f9kGG	\N	2025-05-23 10:22:30	2025-05-23 10:22:30	\N	\N	+44	414993042	82	\N	1	\N	2	Female		1977-12-19	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mr. Niko Wuckert	\N	LQ798075	1	0	0	f	f	\N	0	\N	\N	0	\N
147	Elenora Dickens	olowe@example.net	\N	$2y$12$v2O7vH8tyqtsaweprejz9ez/aM8/f.mlWUimaKqT/hFm1khQBP3E2	\N	2025-05-23 10:22:30	2025-05-23 10:22:30	\N	\N	+91	932208019	178	\N	1	\N	2	Male		1975-04-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Margarita Fadel	\N	LQ226729	1	0	0	f	f	\N	0	\N	\N	0	\N
148	Wilford Spinka	domenick.erdman@example.net	\N	$2y$12$4kCJkrHeoP6GRH6/i4s/IOdhNyDihm.XntamtlFPun7DN9ffVp/Oa	\N	2025-05-23 10:22:30	2025-05-23 10:22:30	\N	\N	+44	956849586	148	\N	1	\N	2	Male		1981-09-19	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Patience Bayer PhD	\N	LQ945591	1	0	0	f	f	\N	0	\N	\N	0	\N
149	Mrs. Chanelle Renner	johnny.legros@example.com	\N	$2y$12$I0qvx/RFDHcdwlpi/AHkF.NyWlmGwtMMTkA4hTJqfHAC8LwTZka8u	\N	2025-05-23 10:22:31	2025-05-23 10:22:31	\N	\N	+44	991314417	51	\N	1	\N	2	Male		1985-06-07	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ahmad Gulgowski	\N	LQ345350	1	0	0	f	f	\N	0	\N	\N	0	\N
150	Willis Blanda	cronin.elvera@example.org	\N	$2y$12$7B2OyQ2MK7fF65q3z0BR9u69.pVO6qNOwr0U5qh5uOf9NdhehYN4a	\N	2025-05-23 10:22:31	2025-05-23 10:22:31	\N	\N	+1	103194292	167	\N	1	\N	2	Female		1986-06-15	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ayla Blanda	\N	LQ796658	1	0	0	f	f	\N	0	\N	\N	0	\N
151	Dr. Heather Schiller IV	grant.leola@example.com	\N	$2y$12$XSCNAGNuE9qtKXt8wreUo.oHJP0Aag23V.aIsPrlo4XT2L1fznVeC	\N	2025-05-23 10:22:31	2025-05-23 10:22:31	\N	\N	+44	655031172	78	\N	1	\N	2	Female		1975-02-17	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jakob Auer III	\N	LQ708482	1	0	0	f	f	\N	0	\N	\N	0	\N
152	Dr. Lyric Glover V	carroll.candelario@example.org	\N	$2y$12$aVpGjExV39QLmqwRluHA1.3PcP3RBsb0maxdfMBYja3j2.ixv/8Fq	\N	2025-05-23 10:22:32	2025-05-23 10:22:32	\N	\N	+1	544865013	131	\N	1	\N	2	Male		1993-12-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Serenity Gerlach	\N	LQ899475	1	0	0	f	f	\N	0	\N	\N	0	\N
153	Michael Feil	aokon@example.org	\N	$2y$12$tiWdRLMHVutOpUE1MArRJOSrUgTF/JSHlq7HOmjWCpP8T9ip2yYWi	\N	2025-05-23 10:22:32	2025-05-23 10:22:32	\N	\N	+91	402977027	162	\N	1	\N	2	Male		1995-04-16	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Gennaro Hane	\N	LQ544352	1	0	0	f	f	\N	0	\N	\N	0	\N
213	Sara	sara@gmail.com	2025-06-03 03:13:18	$2y$12$5qbb2BgMJzUJBFLYdq/JDOcklChAbL8RkhSnQH5e5D49c1H8Pn7he	\N	2025-06-03 03:03:02	2025-06-03 03:13:18	\N	\N	971	513318466	\N	\N	1	\N	2	Female	\N	2007-04-09	0	android	ficCru2ASHu6683tN_UsRY:APA91bF1euAvIcBrCJ4Pz1jAhwPLP6glNSRsZMfOKpL6Y0I3I3IwLx-OS2jMeAAgqxAks-Ji_9vsjgimAiEzuezuGl0x2QUNIBuEhu26ch1kIK69cT1zOkQ	\N		\N	\N	\N	0	1	f13bfe0e1152a7053ede790cb122ea4a37c564ae888e69b54136169669529b1f	1	0	Sara name	237	LQ000213	0	0	0	f	f	-ORnjVqAH2eyFqwZKLdR	0	Sara parent	anil@dxbusinessgroup.com	0	\N
163	Hamid	dx011@gmail.com	2025-05-26 22:28:17	$2y$12$3e6uF0EvI3u7.5D6q7Iuf.R4IJbtsDjtBBsg5t99nvLxkR/27vPRG	\N	2025-05-26 22:28:07	2025-05-26 22:28:17	\N	\N	971	346767667	\N	\N	1	\N	2	Female	\N	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	2bb25f0eb4deac22cf32898fb10968291b58c45d095a3a5c2da58a1bbe178771	0	0	Raza	169	LQ000163	0	0	0	f	f	\N	0	\N	\N	0	\N
223	Zainab Khan	hibaejaz97+5@gmail.com	2025-06-05 07:58:19	$2y$12$D6sAGYTJKAbsSgjzAkz.E..o.k.Zc6Qb7BM4vubjFybBTi2UP2Hf6	\N	2025-06-04 07:39:50	2025-06-05 07:58:19	\N	\N	971	561667848	1	4	1	\N	2	Female	683ff85b8eda5_1749022811.	1995-06-04	0	android	esn0ZJA8SOW3IZDC-EFCop:APA91bGKqg_0Thb0Ld7bOnvI97_WMAKDnzje9nZocuOaz9crTuD-Z8bU49ZSOrX0-h5FFYJu38TcXL5rW3mECJ-xG-vQnKCOSKMegNsuqacfhYxdYYjvayg	\N		\N	\N	\N	0	1	a0a5a3cad91dc0e7758ef4c6b21cc954170fb21e9271c057a27de1ed6f79c81e	1	0	Zainab	1	LQ000223	1	0	0	f	f	-ORtsSK7HHWV1okHuXAa	1	MK Khan	hibaejaz97+6@gmail.com	1	\N
173	Anil	anil@dxbusinessgroup.com	2025-05-27 07:02:34	$2y$12$MdhK4H1Lwf6WwMLvb7RzpeWq4W4mhGJYKbDKAVr0VzbWFBavOfpJq	\N	2025-05-27 07:02:34	2025-05-27 07:05:02	\N	\N	971	523243163	\N	\N	1	\N	2	Male	6835641e086c8_1748329502.	2006-07-13	0	android	f4-VIYgQQ-S-UYxzhbViw5:APA91bFslcTH3JblmhPckRCt5IQBamuwmC8FsG5JEg-exYUcRc1E3dw5-rY04g-WID72RfuangL14YN2Dc7P5HdeFOjewyjWnZcOt4WMN4TysJPt069tLyI			\N	\N	\N	0	1	633a1267603f98ef4bcedefd0bab05eb8f0912befda4b454cbe1b03f9c00bb6b	0	0	Navis	237	LQ000173	1	0	0	f	f	-ORFYCVugo_2PXSanabe	0	\N	\N	0	\N
233	Salma	salma@gmail.com	2025-06-06 08:18:31	$2y$12$xWZEC0qp8L8xRFQr04JItu.lNO7osDwNBGI6R3wTmGCSJYaVAs/UG	\N	2025-06-05 08:52:49	2025-06-06 08:31:54	\N	\N	971	555555756	1	1	1	\N	2	Female	68415b48cfb5a_1749113672.	2007-05-02	0	android	fyFw4bu8TzOcTlzWIheNtP:APA91bHGjnC0jW5DRfXS0IcgJSSbfQ_D_F6-nI0C2P3tnp-HwqyRQAQ9nFoNztzUZxoT_ZcvebupkJenTfp54XYsoofeXq1GIQHKuXcmlUF2OnBWsTEIQCI	\N		\N	\N	\N	0	1	a17db8bc9a5bfe027dafde8c9079cae72ecbc38bb3fbab1e90ceef83d748090e	1	0	Salmath	237	LQ000233	1	0	1	f	f	-ORzHkCTgDKLh0gP8KZp	1	Salma parent	anil@dxbusinessgroup.com	1	\N
243	Maheen Alam	hibaejaz97+12@gmail.com	2025-06-09 10:33:23	$2y$12$KwU5KnQ9Q/EfvasTXNuAyOY0y3xWi3ub/wpDaDYFaqjY0jl0v0SzC	\N	2025-06-09 09:13:24	2025-06-09 10:33:23	\N	\N	971	569874500	1	4	1	\N	2	Female	6846a6021f02c_1749460482.	1994-03-30	0	android	cLc0rEF4TwSoMh0Evig4so:APA91bF9UtY8SkbCABh1fIR-Eu57v6lzClUPwaKyMWFYykGMwc6CY-aX0Q1JwUOGdYiB77yZ6mnbP5xLL0vv2OZqQwwZaUsRwf41rs6gK-2BS1RxcNtAe1I	\N		\N	\N	\N	0	1	48b7399c60d6c642d4e4b1b73437d76e95b6d7992fc0477ebee5a38877e06ff2	1	0	Mahi	103	LQ000243	1	0	0	f	f	-OSIxoi595M3agyH3Gyp	1	Alam Khan	hibaejaz97+13@gmail.com	1	\N
257	Naheed Tariq	hibaejaz97+15@gmail.com	2025-07-12 06:38:07	$2y$12$i5kHGHfT648nvn0I3g7Nl.U5QQcYXkIq.yRzAoJJTf3zgfaERID2q	\N	2025-07-11 13:37:02	2025-07-12 06:38:07	\N	\N	971	561660488	\N	\N	1	\N	2	Female	687113bace19f_1752241082.	1990-07-11	0	ios	c5rfVoZMRE52hasZ-PCyj9:APA91bF2AbCAFaIguBBDnOwCleEvoZePf1BmDMNzw9P13GZJbgoqMmGO6xLqvNUnMgSfkmGSggR5dF0wqwEI6FqEcUvN3a4hezrsvu_5pfCRwPijC0WFhXo	\N		\N	\N	\N	0	1	07ecb75d22965690b5b4a1a9466b26960bf770fa6e71b345987e28b1a3827bdc	1	0	Naheed	237	LQ000257	0	0	0	f	f	-OUth1R2a5n-pptYdBSy	0	Tariq Mehmood	hibaejaz97+16@gmail.com	0	\N
266	Hamid Raza	razahamid34+113@gmail.com	2025-07-13 07:26:29	$2y$12$IYBrO01ONKvVmHCPwz.7BuB7lGuFJypT9MgOrofUzN7QqV8oL1EgC	\N	2025-07-13 07:26:29	2025-07-13 08:52:26	\N	\N	971	367766767	\N	\N	1	\N	2	Female	\N	2007-07-13	0	android				\N	\N	\N	0	1		0	0	Razahamid	237	LQ000266	1	0	0	f	f	-OV1fOv1fn5yyPdsvLYb	1	Hamjsjsjs	razahamid34@gmail.com	1	\N
\.


--
-- Data for Name: verification_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.verification_requests (id, user_id, name, email, remarks, status, licence_file, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: why_choose_us; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.why_choose_us (id, name, content, image, status, created_at, updated_at) FROM stdin;
1	Comprehensive Services	We provide a wide range of services under one roof, addressing all aspects of your documentation needs. Our comprehensive approach streamlines processes, saving you time and effort.	17356770326774546824d2a.png	t	2024-12-31 20:22:58	2024-12-31 20:30:32
2	Comprehensive Services 1	We provide a wide range of services under one roof, addressing all aspects of your documentation needs. Our comprehensive approach streamlines processes, saving you time and effort.	17356772606774554c66883.png	t	2024-12-31 20:34:20	2024-12-31 20:39:30
\.


--
-- Data for Name: work_process; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.work_process (id, name, content, image, status, created_at, updated_at) FROM stdin;
1	Find Your Requested Service	Explore our diverse range of services to quickly identify the solution that meets your needs.	173567910967745c859cd66.png	t	2024-12-31 21:05:09	2024-12-31 21:05:25
\.


--
-- Name: activities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.activities_id_seq', 9, true);


--
-- Name: ad_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_fields_id_seq', 740, true);


--
-- Name: ad_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_images_id_seq', 18, true);


--
-- Name: ad_plans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_plans_id_seq', 32, true);


--
-- Name: ad_report_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_report_types_id_seq', 1, false);


--
-- Name: ad_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_reports_id_seq', 1, false);


--
-- Name: ad_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_requests_id_seq', 1, false);


--
-- Name: ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ads_id_seq', 187, true);


--
-- Name: badges_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.badges_id_seq', 2, true);


--
-- Name: bookings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.bookings_id_seq', 1, false);


--
-- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.categories_id_seq', 162, true);


--
-- Name: category_atributes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.category_atributes_id_seq', 37, true);


--
-- Name: category_atributes_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.category_atributes_value_id_seq', 1488, true);


--
-- Name: category_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.category_fields_id_seq', 82, true);


--
-- Name: challenges_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.challenges_companies_id_seq', 1, false);


--
-- Name: challenges_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.challenges_id_seq', 1, false);


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

SELECT pg_catalog.setval('public.cities_id_seq', 17, true);


--
-- Name: cms_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cms_pages_id_seq', 7, true);


--
-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.companies_id_seq', 1, false);


--
-- Name: contact_us_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.contact_us_id_seq', 1, false);


--
-- Name: countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.countries_id_seq', 2, true);


--
-- Name: delivery_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.delivery_types_id_seq', 1, false);


--
-- Name: dress_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.dress_codes_id_seq', 8, true);


--
-- Name: educations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.educations_id_seq', 7, true);


--
-- Name: emirates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emirates_id_seq', 7, true);


--
-- Name: event_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.event_types_id_seq', 1, false);


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

SELECT pg_catalog.setval('public.events_id_seq', 1, false);


--
-- Name: failed_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.failed_jobs_id_seq', 1, false);


--
-- Name: faqs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.faqs_id_seq', 1, false);


--
-- Name: field_conditions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.field_conditions_id_seq', 17, true);


--
-- Name: genetic_disease_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.genetic_disease_variants_id_seq', 10, true);


--
-- Name: genetic_diseases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.genetic_diseases_id_seq', 6, true);


--
-- Name: home_element_ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_element_ads_id_seq', 11, true);


--
-- Name: home_elements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_elements_id_seq', 17, true);


--
-- Name: home_logos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_logos_id_seq', 9, true);


--
-- Name: home_page_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_page_settings_id_seq', 1, false);


--
-- Name: insights_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.insights_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: known_languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.known_languages_id_seq', 200, true);


--
-- Name: languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.languages_id_seq', 1, false);


--
-- Name: languages_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.languages_id_seq1', 8, true);


--
-- Name: looking_ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.looking_ads_id_seq', 1, true);


--
-- Name: main_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.main_notifications_id_seq', 19, true);


--
-- Name: marital_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.marital_statuses_id_seq', 8, true);


--
-- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.migrations_id_seq', 242, true);


--
-- Name: motor_makes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.motor_makes_id_seq', 104, true);


--
-- Name: motor_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.motor_models_id_seq', 1418, true);


--
-- Name: nationalities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.nationalities_id_seq', 250, true);


--
-- Name: notification_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notification_settings_id_seq', 238, true);


--
-- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notifications_id_seq', 776, true);


--
-- Name: packages_addons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.packages_addons_id_seq', 1, false);


--
-- Name: packages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.packages_id_seq', 1, false);


--
-- Name: parent_approvals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.parent_approvals_id_seq', 44, true);


--
-- Name: parent_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.parent_categories_id_seq', 10, true);


--
-- Name: payment_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.payment_reports_id_seq', 111, true);


--
-- Name: permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permissions_id_seq', 1, false);


--
-- Name: personal_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.personal_access_tokens_id_seq', 428, true);


--
-- Name: plan_durations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.plan_durations_id_seq', 1, false);


--
-- Name: plan_durations_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.plan_durations_id_seq1', 3, true);


--
-- Name: popular_ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.popular_ads_id_seq', 1, true);


--
-- Name: pricing_plans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pricing_plans_id_seq', 1, false);


--
-- Name: pricing_plans_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pricing_plans_id_seq1', 4, true);


--
-- Name: professions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.professions_id_seq', 5, true);


--
-- Name: promo_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.promo_codes_id_seq', 1, true);


--
-- Name: property_amenities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.property_amenities_id_seq', 44, true);


--
-- Name: quotes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quotes_id_seq', 1, false);


--
-- Name: report_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.report_types_id_seq', 8, true);


--
-- Name: reviews_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reviews_id_seq', 1, false);


--
-- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.roles_id_seq', 1, false);


--
-- Name: sects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sects_id_seq', 8, true);


--
-- Name: service_atributes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_atributes_id_seq', 1, false);


--
-- Name: service_atributes_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_atributes_value_id_seq', 1, false);


--
-- Name: service_booking_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_booking_fields_id_seq', 1, false);


--
-- Name: service_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_details_id_seq', 1, false);


--
-- Name: service_faqs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_faqs_id_seq', 1, false);


--
-- Name: service_pricing_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_pricing_id_seq', 1, false);


--
-- Name: services_bookings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_bookings_id_seq', 1, false);


--
-- Name: services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_id_seq', 1, false);


--
-- Name: services_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_types_id_seq', 1, false);


--
-- Name: site_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.site_settings_id_seq', 1, false);


--
-- Name: slider_buttons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.slider_buttons_id_seq', 1, false);


--
-- Name: slider_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.slider_items_id_seq', 1, true);


--
-- Name: sliders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sliders_id_seq', 1, false);


--
-- Name: sliders_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sliders_id_seq1', 1, true);


--
-- Name: sports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sports_id_seq', 6, true);


--
-- Name: support_tickets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.support_tickets_id_seq', 8, true);


--
-- Name: target_types_company_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.target_types_company_id_seq', 1, false);


--
-- Name: target_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.target_types_id_seq', 1, false);


--
-- Name: temp_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.temp_orders_id_seq', 137, true);


--
-- Name: temp_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.temp_users_id_seq', 122, true);


--
-- Name: translation_types_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translation_types_categories_id_seq', 1, false);


--
-- Name: translation_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translation_types_id_seq', 1, false);


--
-- Name: user_activities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_activities_id_seq', 182, true);


--
-- Name: user_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_blocks_id_seq', 15, true);


--
-- Name: user_children_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_children_id_seq', 49, true);


--
-- Name: user_connection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_connection_id_seq', 1, false);


--
-- Name: user_connections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_connections_id_seq', 192, true);


--
-- Name: user_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_details_id_seq', 231, true);


--
-- Name: user_disease_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_disease_variants_id_seq', 50, true);


--
-- Name: user_diseases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_diseases_id_seq', 124, true);


--
-- Name: user_dress_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_dress_codes_id_seq', 85, true);


--
-- Name: user_educations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_educations_id_seq', 30, true);


--
-- Name: user_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_images_id_seq', 106, true);


--
-- Name: user_marital_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_marital_statuses_id_seq', 80, true);


--
-- Name: user_matches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_matches_id_seq', 7995, true);


--
-- Name: user_plans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_plans_id_seq', 137, true);


--
-- Name: user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_preferences_id_seq', 181, true);


--
-- Name: user_professions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_professions_id_seq', 42, true);


--
-- Name: user_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_reports_id_seq', 11, true);


--
-- Name: user_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_requests_id_seq', 155, true);


--
-- Name: user_sects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_sects_id_seq', 43, true);


--
-- Name: user_sports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_sports_id_seq', 156, true);


--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.users_id_seq', 272, true);


--
-- Name: verification_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.verification_requests_id_seq', 1, false);


--
-- Name: why_choose_us_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.why_choose_us_id_seq', 1, false);


--
-- Name: work_process_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.work_process_id_seq', 1, false);


--
-- Name: activities activities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activities
    ADD CONSTRAINT activities_pkey PRIMARY KEY (id);


--
-- Name: ad_fields ad_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_fields
    ADD CONSTRAINT ad_fields_pkey PRIMARY KEY (id);


--
-- Name: ad_images ad_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_images
    ADD CONSTRAINT ad_images_pkey PRIMARY KEY (id);


--
-- Name: ad_plans ad_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_plans
    ADD CONSTRAINT ad_plans_pkey PRIMARY KEY (id);


--
-- Name: ad_report_types ad_report_types_name_ar_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types
    ADD CONSTRAINT ad_report_types_name_ar_unique UNIQUE (name_ar);


--
-- Name: ad_report_types ad_report_types_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types
    ADD CONSTRAINT ad_report_types_name_unique UNIQUE (name);


--
-- Name: ad_report_types ad_report_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types
    ADD CONSTRAINT ad_report_types_pkey PRIMARY KEY (id);


--
-- Name: ad_reports ad_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_reports
    ADD CONSTRAINT ad_reports_pkey PRIMARY KEY (id);


--
-- Name: ad_requests ad_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_requests
    ADD CONSTRAINT ad_requests_pkey PRIMARY KEY (id);


--
-- Name: badges badges_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.badges
    ADD CONSTRAINT badges_pkey PRIMARY KEY (id);


--
-- Name: cache_locks cache_locks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cache_locks
    ADD CONSTRAINT cache_locks_pkey PRIMARY KEY (key);


--
-- Name: cache cache_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cache
    ADD CONSTRAINT cache_pkey PRIMARY KEY (key);


--
-- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories
    ADD CONSTRAINT categories_pkey PRIMARY KEY (id);


--
-- Name: category_atributes category_atributes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.category_atributes
    ADD CONSTRAINT category_atributes_pkey PRIMARY KEY (id);


--
-- Name: category_atributes_value category_atributes_value_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.category_atributes_value
    ADD CONSTRAINT category_atributes_value_pkey PRIMARY KEY (id);


--
-- Name: category_fields category_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.category_fields
    ADD CONSTRAINT category_fields_pkey PRIMARY KEY (id);


--
-- Name: challenges_companies challenges_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.challenges_companies
    ADD CONSTRAINT challenges_companies_pkey PRIMARY KEY (id);


--
-- Name: challenges challenges_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.challenges
    ADD CONSTRAINT challenges_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: cms_pages cms_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms_pages
    ADD CONSTRAINT cms_pages_pkey PRIMARY KEY (id);


--
-- Name: companies companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.companies
    ADD CONSTRAINT companies_pkey PRIMARY KEY (id);


--
-- Name: contact_us contact_us_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contact_us
    ADD CONSTRAINT contact_us_pkey PRIMARY KEY (id);


--
-- Name: countries countries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries
    ADD CONSTRAINT countries_pkey PRIMARY KEY (id);


--
-- Name: delivery_types delivery_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.delivery_types
    ADD CONSTRAINT delivery_types_pkey PRIMARY KEY (id);


--
-- Name: dress_codes dress_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dress_codes
    ADD CONSTRAINT dress_codes_pkey PRIMARY KEY (id);


--
-- Name: educations educations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.educations
    ADD CONSTRAINT educations_pkey PRIMARY KEY (id);


--
-- Name: emirates emirates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emirates
    ADD CONSTRAINT emirates_pkey PRIMARY KEY (id);


--
-- Name: event_types event_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.event_types
    ADD CONSTRAINT event_types_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: 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: faqs faqs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faqs
    ADD CONSTRAINT faqs_pkey PRIMARY KEY (id);


--
-- Name: field_conditions field_conditions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.field_conditions
    ADD CONSTRAINT field_conditions_pkey PRIMARY KEY (id);


--
-- Name: genetic_disease_variants genetic_disease_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_disease_variants
    ADD CONSTRAINT genetic_disease_variants_pkey PRIMARY KEY (id);


--
-- Name: genetic_diseases genetic_diseases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_diseases
    ADD CONSTRAINT genetic_diseases_pkey PRIMARY KEY (id);


--
-- Name: home_element_ads home_element_ads_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_element_ads
    ADD CONSTRAINT home_element_ads_pkey PRIMARY KEY (id);


--
-- Name: home_elements home_elements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_elements
    ADD CONSTRAINT home_elements_pkey PRIMARY KEY (id);


--
-- Name: home_logos home_logos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_logos
    ADD CONSTRAINT home_logos_pkey PRIMARY KEY (id);


--
-- Name: home_page_settings home_page_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_page_settings
    ADD CONSTRAINT home_page_settings_pkey PRIMARY KEY (id);


--
-- Name: insights insights_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insights
    ADD CONSTRAINT insights_pkey PRIMARY KEY (id);


--
-- Name: job_batches job_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_batches
    ADD CONSTRAINT job_batches_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: known_languages known_languages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.known_languages
    ADD CONSTRAINT known_languages_pkey PRIMARY KEY (id);


--
-- Name: languages languages_code_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages
    ADD CONSTRAINT languages_code_unique UNIQUE (code);


--
-- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages
    ADD CONSTRAINT languages_pkey PRIMARY KEY (id);


--
-- Name: looking_ads looking_ads_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.looking_ads
    ADD CONSTRAINT looking_ads_pkey PRIMARY KEY (id);


--
-- Name: main_notifications main_notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.main_notifications
    ADD CONSTRAINT main_notifications_pkey PRIMARY KEY (id);


--
-- Name: marital_statuses marital_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.marital_statuses
    ADD CONSTRAINT marital_statuses_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: 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: motor_makes motor_makes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_makes
    ADD CONSTRAINT motor_makes_pkey PRIMARY KEY (id);


--
-- Name: motor_models motor_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_models
    ADD CONSTRAINT motor_models_pkey PRIMARY KEY (id);


--
-- Name: nationalities nationalities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.nationalities
    ADD CONSTRAINT nationalities_pkey PRIMARY KEY (id);


--
-- Name: notification_settings notification_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_settings
    ADD CONSTRAINT notification_settings_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: packages_addons packages_addons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.packages_addons
    ADD CONSTRAINT packages_addons_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: parent_approvals parent_approvals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_approvals
    ADD CONSTRAINT parent_approvals_pkey PRIMARY KEY (id);


--
-- Name: parent_categories parent_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_categories
    ADD CONSTRAINT parent_categories_pkey PRIMARY KEY (id);


--
-- Name: password_reset_tokens password_reset_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.password_reset_tokens
    ADD CONSTRAINT password_reset_tokens_pkey PRIMARY KEY (email);


--
-- Name: payment_reports payment_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_reports
    ADD CONSTRAINT payment_reports_pkey PRIMARY KEY (id);


--
-- Name: permissions permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permissions
    ADD CONSTRAINT permissions_pkey PRIMARY KEY (id);


--
-- Name: personal_access_tokens personal_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.personal_access_tokens
    ADD CONSTRAINT personal_access_tokens_pkey PRIMARY KEY (id);


--
-- Name: personal_access_tokens personal_access_tokens_token_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.personal_access_tokens
    ADD CONSTRAINT personal_access_tokens_token_unique UNIQUE (token);


--
-- Name: plan_durations plan_durations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.plan_durations
    ADD CONSTRAINT plan_durations_pkey PRIMARY KEY (id);


--
-- Name: popular_ads popular_ads_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.popular_ads
    ADD CONSTRAINT popular_ads_pkey PRIMARY KEY (id);


--
-- Name: pricing_plans pricing_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pricing_plans
    ADD CONSTRAINT pricing_plans_pkey PRIMARY KEY (id);


--
-- Name: professions professions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.professions
    ADD CONSTRAINT professions_pkey PRIMARY KEY (id);


--
-- Name: promo_codes promo_codes_code_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.promo_codes
    ADD CONSTRAINT promo_codes_code_unique UNIQUE (code);


--
-- Name: promo_codes promo_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.promo_codes
    ADD CONSTRAINT promo_codes_pkey PRIMARY KEY (id);


--
-- Name: property_amenities property_amenities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.property_amenities
    ADD CONSTRAINT property_amenities_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: report_types report_types_name_ar_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types
    ADD CONSTRAINT report_types_name_ar_unique UNIQUE (name_ar);


--
-- Name: report_types report_types_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types
    ADD CONSTRAINT report_types_name_unique UNIQUE (name);


--
-- Name: report_types report_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types
    ADD CONSTRAINT report_types_pkey PRIMARY KEY (id);


--
-- Name: reviews reviews_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reviews
    ADD CONSTRAINT reviews_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_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT roles_pkey PRIMARY KEY (id);


--
-- Name: sects sects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sects
    ADD CONSTRAINT sects_pkey PRIMARY KEY (id);


--
-- Name: service_atributes service_atributes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_atributes
    ADD CONSTRAINT service_atributes_pkey PRIMARY KEY (id);


--
-- Name: service_atributes_value service_atributes_value_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_atributes_value
    ADD CONSTRAINT service_atributes_value_pkey PRIMARY KEY (id);


--
-- Name: service_booking_fields service_booking_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_booking_fields
    ADD CONSTRAINT service_booking_fields_pkey PRIMARY KEY (id);


--
-- Name: service_details service_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_details
    ADD CONSTRAINT service_details_pkey PRIMARY KEY (id);


--
-- Name: service_faqs service_faqs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_faqs
    ADD CONSTRAINT service_faqs_pkey PRIMARY KEY (id);


--
-- Name: service_pricing service_pricing_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_pricing
    ADD CONSTRAINT service_pricing_pkey PRIMARY KEY (id);


--
-- Name: services_bookings services_bookings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services_bookings
    ADD CONSTRAINT services_bookings_pkey PRIMARY KEY (id);


--
-- Name: services services_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services
    ADD CONSTRAINT services_pkey PRIMARY KEY (id);


--
-- Name: services_types services_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services_types
    ADD CONSTRAINT services_types_pkey PRIMARY KEY (id);


--
-- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sessions
    ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);


--
-- Name: site_settings site_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.site_settings
    ADD CONSTRAINT site_settings_pkey PRIMARY KEY (id);


--
-- Name: slider_items slider_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.slider_items
    ADD CONSTRAINT slider_items_pkey PRIMARY KEY (id);


--
-- Name: sliders sliders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sliders
    ADD CONSTRAINT sliders_pkey PRIMARY KEY (id);


--
-- Name: sports sports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sports
    ADD CONSTRAINT sports_pkey PRIMARY KEY (id);


--
-- Name: support_tickets support_tickets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.support_tickets
    ADD CONSTRAINT support_tickets_pkey PRIMARY KEY (id);


--
-- Name: target_types_company target_types_company_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.target_types_company
    ADD CONSTRAINT target_types_company_pkey PRIMARY KEY (id);


--
-- Name: target_types target_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.target_types
    ADD CONSTRAINT target_types_pkey PRIMARY KEY (id);


--
-- Name: temp_orders temp_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_orders
    ADD CONSTRAINT temp_orders_pkey PRIMARY KEY (id);


--
-- Name: temp_users temp_users_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_email_unique UNIQUE (email);


--
-- Name: temp_users temp_users_phone_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_phone_unique UNIQUE (phone);


--
-- Name: temp_users temp_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_pkey PRIMARY KEY (id);


--
-- Name: translation_types_categories translation_types_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translation_types_categories
    ADD CONSTRAINT translation_types_categories_pkey PRIMARY KEY (id);


--
-- Name: translation_types translation_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translation_types
    ADD CONSTRAINT translation_types_pkey PRIMARY KEY (id);


--
-- Name: user_activities user_activities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_activities
    ADD CONSTRAINT user_activities_pkey PRIMARY KEY (id);


--
-- Name: user_blocks user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_blocks
    ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);


--
-- Name: user_children user_children_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_children
    ADD CONSTRAINT user_children_pkey PRIMARY KEY (id);


--
-- Name: user_connection user_connection_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection
    ADD CONSTRAINT user_connection_pkey PRIMARY KEY (id);


--
-- Name: user_connections user_connections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connections
    ADD CONSTRAINT user_connections_pkey PRIMARY KEY (id);


--
-- Name: user_details user_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_details
    ADD CONSTRAINT user_details_pkey PRIMARY KEY (id);


--
-- Name: user_disease_variants user_disease_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_disease_variants
    ADD CONSTRAINT user_disease_variants_pkey PRIMARY KEY (id);


--
-- Name: user_diseases user_diseases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases
    ADD CONSTRAINT user_diseases_pkey PRIMARY KEY (id);


--
-- Name: user_dress_codes user_dress_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_dress_codes
    ADD CONSTRAINT user_dress_codes_pkey PRIMARY KEY (id);


--
-- Name: user_educations user_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations
    ADD CONSTRAINT user_educations_pkey PRIMARY KEY (id);


--
-- Name: user_images user_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_images
    ADD CONSTRAINT user_images_pkey PRIMARY KEY (id);


--
-- Name: user_marital_statuses user_marital_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_marital_statuses
    ADD CONSTRAINT user_marital_statuses_pkey PRIMARY KEY (id);


--
-- Name: user_matches user_matches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_matches
    ADD CONSTRAINT user_matches_pkey PRIMARY KEY (id);


--
-- Name: user_plans user_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_plans
    ADD CONSTRAINT user_plans_pkey PRIMARY KEY (id);


--
-- Name: user_preferences user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_preferences
    ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (id);


--
-- Name: user_professions user_professions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions
    ADD CONSTRAINT user_professions_pkey PRIMARY KEY (id);


--
-- Name: user_reports user_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_reports
    ADD CONSTRAINT user_reports_pkey PRIMARY KEY (id);


--
-- Name: user_requests user_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_requests
    ADD CONSTRAINT user_requests_pkey PRIMARY KEY (id);


--
-- Name: user_sects user_sects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects
    ADD CONSTRAINT user_sects_pkey PRIMARY KEY (id);


--
-- Name: user_sports user_sports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sports
    ADD CONSTRAINT user_sports_pkey PRIMARY KEY (id);


--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_pkey PRIMARY KEY (id);


--
-- Name: verification_requests verification_requests_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.verification_requests
    ADD CONSTRAINT verification_requests_email_unique UNIQUE (email);


--
-- Name: verification_requests verification_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.verification_requests
    ADD CONSTRAINT verification_requests_pkey PRIMARY KEY (id);


--
-- Name: why_choose_us why_choose_us_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.why_choose_us
    ADD CONSTRAINT why_choose_us_pkey PRIMARY KEY (id);


--
-- Name: work_process work_process_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.work_process
    ADD CONSTRAINT work_process_pkey PRIMARY KEY (id);


--
-- Name: delivery_types_translation_type_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX delivery_types_translation_type_id_index ON public.delivery_types USING btree (translation_type_id);


--
-- Name: failed_jobs_uuid_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX failed_jobs_uuid_unique ON public.failed_jobs USING btree (uuid);


--
-- Name: home_page_settings_key_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX home_page_settings_key_unique ON public.home_page_settings USING btree (key);


--
-- 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: permissions_name_guard_name_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX permissions_name_guard_name_unique ON public.permissions USING btree (name, guard_name);


--
-- Name: personal_access_tokens_tokenable_type_tokenable_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX personal_access_tokens_tokenable_type_tokenable_id_index ON public.personal_access_tokens USING btree (tokenable_type, tokenable_id);


--
-- Name: roles_name_guard_name_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX roles_name_guard_name_unique ON public.roles USING btree (name, guard_name);


--
-- Name: sessions_last_activity_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX sessions_last_activity_index ON public.sessions USING btree (last_activity);


--
-- Name: sessions_user_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX sessions_user_id_index ON public.sessions USING btree (user_id);


--
-- Name: site_settings_key_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX site_settings_key_unique ON public.site_settings USING btree (key);


--
-- Name: translation_types_categories_slug_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX translation_types_categories_slug_unique ON public.translation_types_categories USING btree (slug);


--
-- Name: users_email_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX users_email_unique ON public.users USING btree (email);


--
-- Name: events events_event_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.events
    ADD CONSTRAINT events_event_type_id_fkey FOREIGN KEY (event_type_id) REFERENCES public.event_types(id) ON DELETE CASCADE;


--
-- Name: model_has_permissions model_has_permissions_permission_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_permissions
    ADD CONSTRAINT model_has_permissions_permission_id_fkey FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE;


--
-- Name: model_has_roles model_has_roles_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: notification_settings notification_settings_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_settings
    ADD CONSTRAINT notification_settings_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_permission_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_permission_id_fkey FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: service_details service_details_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_details
    ADD CONSTRAINT service_details_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(id) ON DELETE CASCADE;


--
-- Name: service_faqs service_faqs_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_faqs
    ADD CONSTRAINT service_faqs_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(id) ON DELETE CASCADE;


--
-- Name: user_connection user_connection_connected_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection
    ADD CONSTRAINT user_connection_connected_user_id_foreign FOREIGN KEY (connected_user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: user_connection user_connection_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection
    ADD CONSTRAINT user_connection_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: user_diseases user_diseases_genetic_disease_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases
    ADD CONSTRAINT user_diseases_genetic_disease_id_foreign FOREIGN KEY (genetic_disease_id) REFERENCES public.genetic_diseases(id) ON DELETE SET NULL;


--
-- Name: user_diseases user_diseases_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases
    ADD CONSTRAINT user_diseases_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_dress_codes user_dress_codes_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_dress_codes
    ADD CONSTRAINT user_dress_codes_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_educations user_educations_education_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations
    ADD CONSTRAINT user_educations_education_id_foreign FOREIGN KEY (education_id) REFERENCES public.educations(id) ON DELETE SET NULL;


--
-- Name: user_educations user_educations_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations
    ADD CONSTRAINT user_educations_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_marital_statuses user_marital_statuses_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_marital_statuses
    ADD CONSTRAINT user_marital_statuses_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_professions user_professions_profession_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions
    ADD CONSTRAINT user_professions_profession_id_foreign FOREIGN KEY (profession_id) REFERENCES public.professions(id) ON DELETE SET NULL;


--
-- Name: user_professions user_professions_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions
    ADD CONSTRAINT user_professions_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_sects user_sects_sect_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects
    ADD CONSTRAINT user_sects_sect_id_foreign FOREIGN KEY (sect_id) REFERENCES public.sects(id) ON DELETE SET NULL;


--
-- Name: user_sects user_sects_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects
    ADD CONSTRAINT user_sects_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres
--

REVOKE USAGE ON SCHEMA public FROM PUBLIC;
GRANT ALL ON SCHEMA public TO PUBLIC;


--
-- PostgreSQL database dump complete
--

